From 2e197cead5ef968acf08f517629b058a6524d2f9 Mon Sep 17 00:00:00 2001 From: Billy Laws Date: Sat, 9 Apr 2022 12:18:01 +0100 Subject: [PATCH] Support D32S8_Float_Uint_Unorm_Unorm depth/stencil format --- app/src/main/cpp/skyline/gpu/interconnect/graphics_context.h | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/cpp/skyline/gpu/interconnect/graphics_context.h b/app/src/main/cpp/skyline/gpu/interconnect/graphics_context.h index 08b8af6e..dd726fdb 100644 --- a/app/src/main/cpp/skyline/gpu/interconnect/graphics_context.h +++ b/app/src/main/cpp/skyline/gpu/interconnect/graphics_context.h @@ -1866,6 +1866,7 @@ namespace skyline::gpu::interconnect { TIC_FORMAT_CASE_NORM(BC4, BC4); TIC_FORMAT_CASE_INT_FLOAT(R32G32, R32G32); TIC_FORMAT_CASE(D32S8, D32FloatS8Uint, Float, Uint, Uint, Unorm); + TIC_FORMAT_CASE(D32S8, D32FloatS8Uint, Float, Uint, Unorm, Unorm); TIC_FORMAT_CASE_NORM_INT_FLOAT(R16G16B16A16, R16G16B16A16); TIC_FORMAT_CASE_ST(Astc4x4, Astc4x4, Unorm);