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:
Iago Toral Quiroga 2023-01-17 13:55:34 +01:00 committed by Marge Bot
parent 0594b3c143
commit 01c6eeeba5
2 changed files with 0 additions and 7 deletions

View file

@ -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;

View file

@ -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;