diff options
author | Dave Airlie <[email protected]> | 2017-08-21 14:11:04 +1000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-08-29 19:14:13 +0100 |
commit | c25e8968105e6fa32f6f66972c9bbf6095e92c26 (patch) | |
tree | 14e9d51a1ad59935d764cdbabe881261c1bd8f98 | |
parent | 9172c7744a32238e93ec96116c0057a558d219a5 (diff) |
radv/gfx9: don't expose linear depth on vega.
This just zeros out the linear flags for gfx9 + depth formats.
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Cc: "17.2" <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
(cherry picked from commit 8985ad494bce5a4c365fe38fdf500d8582b5a7d0)
-rw-r--r-- | src/amd/vulkan/radv_formats.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/amd/vulkan/radv_formats.c b/src/amd/vulkan/radv_formats.c index 57bde9e7cdc..c19a9a37a49 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; |