Module: Mesa Branch: master Commit: 8d621e8ff72c0439d08450425fbf0cda23232f39 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=8d621e8ff72c0439d08450425fbf0cda23232f39
Author: Juan A. Suarez Romero <[email protected]> Date: Mon Apr 29 17:10:24 2019 +0200 anv: enable descriptor indexing capabilities This enables the remaining capabilities in SPV_EXT_descriptor_indexing. Fixes: 6e230d7607f "anv: Implement VK_EXT_descriptor_indexing" Reviewed-by: Jason Ekstrand <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> --- src/intel/vulkan/anv_pipeline.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/intel/vulkan/anv_pipeline.c b/src/intel/vulkan/anv_pipeline.c index 20eab548fb2..b9c9bfd7598 100644 --- a/src/intel/vulkan/anv_pipeline.c +++ b/src/intel/vulkan/anv_pipeline.c @@ -141,6 +141,8 @@ anv_shader_compile_to_nir(struct anv_device *device, .caps = { .derivative_group = true, .descriptor_array_dynamic_indexing = true, + .descriptor_array_non_uniform_indexing = true, + .descriptor_indexing = true, .device_group = true, .draw_parameters = true, .float16 = pdevice->info.gen >= 8, _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
