mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-08 04:10:10 +01:00
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 <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
eac9247b2d
commit
eda1b77cc2
1 changed files with 1 additions and 0 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue