diff options
author | Jason Ekstrand <[email protected]> | 2016-08-20 06:11:41 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-09-13 12:40:12 -0700 |
commit | 8cb144bd93fbcb7cae259d737731bf825367fb69 (patch) | |
tree | 70a81814514331ae5ff0faa7f3f84fd993ca2979 /src/intel/vulkan/anv_private.h | |
parent | 823ab8343277a64bd64c3389982db01aa1aa7f34 (diff) |
anv/pipeline: Roll compute_urb_partition into emit_urb_setup
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index f32806ca299..eb91d4b3143 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -1521,9 +1521,6 @@ struct anv_pipeline { struct anv_shader_bin * shaders[MESA_SHADER_STAGES]; struct { - uint32_t start[MESA_SHADER_GEOMETRY + 1]; - uint32_t size[MESA_SHADER_GEOMETRY + 1]; - uint32_t entries[MESA_SHADER_GEOMETRY + 1]; const struct gen_l3_config * l3_config; uint32_t total_size; } urb; @@ -1638,9 +1635,6 @@ anv_get_isl_format(const struct gen_device_info *devinfo, VkFormat vk_format, } void -anv_compute_urb_partition(struct anv_pipeline *pipeline); - -void anv_pipeline_setup_l3_config(struct anv_pipeline *pipeline, bool needs_slm); /** |