diff options
author | Caio Marcelo de Oliveira Filho <[email protected]> | 2020-02-27 11:02:17 -0800 |
---|---|---|
committer | Caio Marcelo de Oliveira Filho <[email protected]> | 2020-02-27 14:45:10 -0800 |
commit | dab7a4d82c1a490c93da3c19d34097732ae8a15c (patch) | |
tree | 1d77d92ce087b63ba7c1404913302db9a105e765 /src/intel/vulkan/anv_private.h | |
parent | 0bb25e4713f8d7e1eb58c071d98b081afed9f3dc (diff) |
anv: Remove unused field `urb.total_size`
This was used before the URB calculation functions were shared by GL
and Vulkan. Also drop the substruct for the remaining, `l3_config` is
a good name on its own.
Also-written-by: Jason Ekstrand <[email protected]>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3981>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3981>
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index e30a49a72a0..0072bd8422d 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -3165,10 +3165,7 @@ struct anv_pipeline { uint32_t num_executables; struct anv_pipeline_executable executables[MAX_PIPELINE_EXECUTABLES]; - struct { - const struct gen_l3_config * l3_config; - uint32_t total_size; - } urb; + const struct gen_l3_config * l3_config; VkShaderStageFlags active_stages; struct anv_state blend_state; |