diff options
author | Jason Ekstrand <[email protected]> | 2019-10-28 17:28:09 -0500 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2019-10-31 13:46:09 +0000 |
commit | 853d3b59fdafc10ebe462c1f15362451855c2a71 (patch) | |
tree | 6b575945de5c63f83b0a888063d49bdb5de00d4d /src/intel/vulkan/anv_private.h | |
parent | d0ec55d5a30ea26066e03bafe43dfac9f6a37a76 (diff) |
anv: Allocate misc BOs from the cache
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index 8fe16e3ad68..ec8fc1b0c12 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -1175,9 +1175,9 @@ struct anv_device { struct anv_state_pool binding_table_pool; struct anv_state_pool surface_state_pool; - struct anv_bo workaround_bo; - struct anv_bo trivial_batch_bo; - struct anv_bo hiz_clear_bo; + struct anv_bo * workaround_bo; + struct anv_bo * trivial_batch_bo; + struct anv_bo * hiz_clear_bo; struct anv_pipeline_cache default_pipeline_cache; struct blorp_context blorp; |