Mesa (master): radv: support S8_UINT as a depth/stencil format.

Dave Airlie airlied at kemper.freedesktop.org
Thu Apr 13 19:49:42 UTC 2017


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

Author: Dave Airlie <airlied at redhat.com>
Date:   Fri Apr 14 05:34:26 2017 +1000

radv: support S8_UINT as a depth/stencil format.

This enables a bunch of NotSupported CTS tests.

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

---

 src/amd/vulkan/radv_formats.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/amd/vulkan/radv_formats.c b/src/amd/vulkan/radv_formats.c
index 9b21e04c63..07942e4217 100644
--- a/src/amd/vulkan/radv_formats.c
+++ b/src/amd/vulkan/radv_formats.c
@@ -537,7 +537,7 @@ bool radv_is_colorbuffer_format_supported(VkFormat format, bool *blendable)
 
 static bool radv_is_zs_format_supported(VkFormat format)
 {
-	return radv_translate_dbformat(format) != V_028040_Z_INVALID;
+	return radv_translate_dbformat(format) != V_028040_Z_INVALID || format == VK_FORMAT_S8_UINT;
 }
 
 static void




More information about the mesa-commit mailing list