From a03bbef4d665143420c7d7f561f07aa2c3db1c3e Mon Sep 17 00:00:00 2001 From: gdkchan Date: Fri, 21 May 2021 20:15:08 -0300 Subject: [PATCH] Add another Depth32F texture format (#2304) --- Ryujinx.Graphics.Gpu/Image/FormatTable.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Ryujinx.Graphics.Gpu/Image/FormatTable.cs b/Ryujinx.Graphics.Gpu/Image/FormatTable.cs index b4b881792..03687adee 100644 --- a/Ryujinx.Graphics.Gpu/Image/FormatTable.cs +++ b/Ryujinx.Graphics.Gpu/Image/FormatTable.cs @@ -50,6 +50,7 @@ namespace Ryujinx.Graphics.Gpu.Image { 0x49201, new FormatInfo(Format.R32G32B32A32Uint, 1, 1, 16, 4) }, { 0x36d81, new FormatInfo(Format.R32G32B32A32Sint, 1, 1, 16, 4) }, { 0x2493a, new FormatInfo(Format.D16Unorm, 1, 1, 2, 1) }, + { 0x493af, new FormatInfo(Format.D32Float, 1, 1, 4, 1) }, { 0x7ffaf, new FormatInfo(Format.D32Float, 1, 1, 4, 1) }, { 0x24a0e, new FormatInfo(Format.D24UnormS8Uint, 1, 1, 4, 2) }, { 0x24a29, new FormatInfo(Format.D24UnormS8Uint, 1, 1, 4, 2) },