From: Dave Airlie <airl...@redhat.com>

This just zeros out the linear flags for gfx9 + depth formats.

Signed-off-by: Dave Airlie <airl...@redhat.com>
---
 src/amd/vulkan/radv_formats.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/amd/vulkan/radv_formats.c b/src/amd/vulkan/radv_formats.c
index 57bde9e..c19a9a3 100644
--- a/src/amd/vulkan/radv_formats.c
+++ b/src/amd/vulkan/radv_formats.c
@@ -578,6 +578,10 @@ radv_physical_device_get_format_properties(struct 
radv_physical_device *physical
                                 VK_FORMAT_FEATURE_BLIT_DST_BIT;
                        tiled |= VK_FORMAT_FEATURE_TRANSFER_SRC_BIT_KHR |
                                 VK_FORMAT_FEATURE_TRANSFER_DST_BIT_KHR;
+
+                       /* GFX9 doesn't support linear depth surfaces */
+                       if (physical_device->rad_info.chip_class >= GFX9)
+                               linear = 0;
                }
        } else {
                bool linear_sampling;
-- 
2.9.4

_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to