Mesa (master): radv: enable tc compatible htile for d32s8 also.

Dave Airlie airlied at kemper.freedesktop.org
Wed Oct 4 20:03:06 UTC 2017


Module: Mesa
Branch: master
Commit: ad3d98da9faefd716bee5e2dc591bf3d4fb3321e
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=ad3d98da9faefd716bee5e2dc591bf3d4fb3321e

Author: Dave Airlie <airlied at redhat.com>
Date:   Tue Jun 13 13:31:14 2017 +1000

radv: enable tc compatible htile for d32s8 also.

This enables tc compatible htile for stencil surfaces as well.

This gives a 3-5fps boost on Mad Max on high at 4k.

It also depends on Bas's tc-compat htile patch.

Reviewed-by: Bas Nieuwenhuizen <bas at basnieuwenhuizen.nl>
Reviewed-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Signed-off-by: Dave Airlie <airlied at redhat.com>

---

 src/amd/vulkan/radv_image.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c
index bf30281aba..c017bf8955 100644
--- a/src/amd/vulkan/radv_image.c
+++ b/src/amd/vulkan/radv_image.c
@@ -114,7 +114,8 @@ radv_init_surface(struct radv_device *device,
 		    pCreateInfo->tiling != VK_IMAGE_TILING_LINEAR &&
 		    pCreateInfo->mipLevels <= 1 &&
 		    device->physical_device->rad_info.chip_class >= VI &&
-		    (pCreateInfo->format == VK_FORMAT_D32_SFLOAT ||
+		    ((pCreateInfo->format == VK_FORMAT_D32_SFLOAT ||
+		      pCreateInfo->format == VK_FORMAT_D32_SFLOAT_S8_UINT) ||
 		     (device->physical_device->rad_info.chip_class >= GFX9 &&
 		      pCreateInfo->format == VK_FORMAT_D16_UNORM)))
 			surface->flags |= RADEON_SURF_TC_COMPATIBLE_HTILE;




More information about the mesa-commit mailing list