diff options
author | Jason Ekstrand <[email protected]> | 2017-02-27 16:34:13 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-08-15 19:08:26 -0700 |
commit | 017cdb10cf5001d018b65eeec4b06ebeacbb5593 (patch) | |
tree | 13eb65fc54732c45ad17bd5260fb39fc6bebf024 /src/intel/vulkan/anv_private.h | |
parent | 031f57eba3719c8dd6462ebd2af696d2632d71b8 (diff) |
anv: Submit a dummy batch when only semaphores are provided.
Vulkan allows you to do a submit whose only job is to wait on and
trigger semaphores. The easiest way for us to support that right
now is to insert a dummy execbuf.
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index b599db3b801..bc67bb6013a 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -745,6 +745,7 @@ struct anv_device { struct anv_state_pool surface_state_pool; struct anv_bo workaround_bo; + struct anv_bo trivial_batch_bo; struct anv_pipeline_cache blorp_shader_cache; struct blorp_context blorp; |