summaryrefslogtreecommitdiffstats
path: root/src/intel/vulkan/anv_private.h
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2016-08-20 06:11:41 -0700
committerJason Ekstrand <jason.ekstrand@intel.com>2016-09-13 12:40:12 -0700
commit8cb144bd93fbcb7cae259d737731bf825367fb69 (patch)
tree70a81814514331ae5ff0faa7f3f84fd993ca2979 /src/intel/vulkan/anv_private.h
parent823ab8343277a64bd64c3389982db01aa1aa7f34 (diff)
downloadexternal_mesa3d-8cb144bd93fbcb7cae259d737731bf825367fb69.zip
external_mesa3d-8cb144bd93fbcb7cae259d737731bf825367fb69.tar.gz
external_mesa3d-8cb144bd93fbcb7cae259d737731bf825367fb69.tar.bz2
anv/pipeline: Roll compute_urb_partition into emit_urb_setup
Signed-off-by: Jason Ekstrand <jason@jlekstrand.net> Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r--src/intel/vulkan/anv_private.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h
index f32806c..eb91d4b 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);
/**