diff options
Diffstat (limited to 'src/broadcom/vulkan/v3dv_private.h')
-rw-r--r-- | src/broadcom/vulkan/v3dv_private.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/broadcom/vulkan/v3dv_private.h b/src/broadcom/vulkan/v3dv_private.h index b8ed1ae74e4..3a21fd28a81 100644 --- a/src/broadcom/vulkan/v3dv_private.h +++ b/src/broadcom/vulkan/v3dv_private.h @@ -967,6 +967,12 @@ struct v3dv_cmd_buffer { * buffer via vkCmdExecuteCommands. */ struct list_head jobs; + + /* For secondary command buffers inside a render pass, a list of jobs + * that should be executed right before the secondary job is executed + * inside a primary. + */ + struct list_head pre_jobs; }; struct v3dv_job *v3dv_cmd_buffer_start_job(struct v3dv_cmd_buffer *cmd_buffer, |