diff options
author | Samuel Pitoiset <[email protected]> | 2019-12-12 18:22:34 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2019-12-12 18:52:08 +0100 |
commit | eda1b77cc202702c1aa2a72c09d4e7f34bb9c281 (patch) | |
tree | 8089f14f0171335654fcc3c979e3d5d5e1560436 /src/amd/vulkan/radv_shader.c | |
parent | eac9247b2dfebdb22a3446f588b00ec773b9e3fa (diff) |
radv: enable SpvCapabilityImageMSArray
The Vulkan spec says that StorageImageMultisample and ImageMSArray
SPIRV-V capabilities must be enabled if the
shaderStorageImageMultisample feature is supported.
This fixes a warning with RenderDoc.
Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2212
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_shader.c')
-rw-r--r-- | src/amd/vulkan/radv_shader.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/amd/vulkan/radv_shader.c b/src/amd/vulkan/radv_shader.c index 6466bad5cae..dd3494b9e3e 100644 --- a/src/amd/vulkan/radv_shader.c +++ b/src/amd/vulkan/radv_shader.c @@ -375,6 +375,7 @@ radv_shader_compile_to_nir(struct radv_device *device, .float16 = !device->physical_device->use_aco, .float64 = true, .geometry_streams = true, + .image_ms_array = true, .image_read_without_format = true, .image_write_without_format = true, .int8 = !device->physical_device->use_aco, |