mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
v3dv: drop unused field from v3dv_cmd_buffer
Not needed since we moved to the common sync framework. Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20787>
This commit is contained in:
parent
0594b3c143
commit
01c6eeeba5
2 changed files with 0 additions and 7 deletions
|
|
@ -66,7 +66,6 @@ cmd_buffer_init(struct v3dv_cmd_buffer *cmd_buffer,
|
|||
|
||||
list_inithead(&cmd_buffer->private_objs);
|
||||
list_inithead(&cmd_buffer->jobs);
|
||||
list_inithead(&cmd_buffer->list_link);
|
||||
|
||||
cmd_buffer->state.subpass_idx = -1;
|
||||
cmd_buffer->state.meta.subpass_idx = -1;
|
||||
|
|
|
|||
|
|
@ -1709,12 +1709,6 @@ struct v3dv_cmd_buffer {
|
|||
|
||||
struct v3dv_device *device;
|
||||
|
||||
/* Used at submit time to link command buffers in the submission that have
|
||||
* spawned wait threads, so we can then wait on all of them to complete
|
||||
* before we process any signal semaphores or fences.
|
||||
*/
|
||||
struct list_head list_link;
|
||||
|
||||
VkCommandBufferUsageFlags usage_flags;
|
||||
|
||||
enum v3dv_cmd_buffer_status status;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue