diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index ee892d79468..f82d870908f 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1249,7 +1249,10 @@ void anv_GetPhysicalDeviceFeatures2( .shaderImageGatherExtended = true, .shaderStorageImageExtendedFormats = true, .shaderStorageImageMultisample = false, - .shaderStorageImageReadWithoutFormat = false, + /* Gfx12.5 has all the required format supported in HW for typed + * read/writes + */ + .shaderStorageImageReadWithoutFormat = pdevice->info.verx10 >= 125, .shaderStorageImageWriteWithoutFormat = true, .shaderUniformBufferArrayDynamicIndexing = true, .shaderSampledImageArrayDynamicIndexing = true,