Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23322>
struct vk_cmd_queue_entry {
struct list_head cmd_link;
enum vk_cmd_type type;
+ void *driver_data;
+ void (*driver_free_cb)(struct vk_cmd_queue *queue,
+ struct vk_cmd_queue_entry *cmd);
union {
% for c in commands:
% if len(c.params) <= 1:
% endif
% endfor
} u;
- void *driver_data;
- void (*driver_free_cb)(struct vk_cmd_queue *queue,
- struct vk_cmd_queue_entry *cmd);
};
% for c in commands: