From 873bb4c15ac2b949594eb6267420508dce6dc2fd Mon Sep 17 00:00:00 2001 From: gdk Date: Tue, 15 Oct 2019 00:11:11 -0300 Subject: Fix BC6 Signed/Unsigned float texture formats --- Ryujinx.Graphics.Gpu/Image/FormatTable.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Ryujinx.Graphics.Gpu/Image/FormatTable.cs') diff --git a/Ryujinx.Graphics.Gpu/Image/FormatTable.cs b/Ryujinx.Graphics.Gpu/Image/FormatTable.cs index 9f5b26d4..baff2e4f 100644 --- a/Ryujinx.Graphics.Gpu/Image/FormatTable.cs +++ b/Ryujinx.Graphics.Gpu/Image/FormatTable.cs @@ -70,8 +70,8 @@ namespace Ryujinx.Graphics.Gpu.Image { 0x124a8, new FormatInfo(Format.Bc5Snorm, 4, 4, 16) }, { 0x24917, new FormatInfo(Format.Bc7Unorm, 4, 4, 16) }, { 0xa4917, new FormatInfo(Format.Bc7Srgb, 4, 4, 16) }, - { 0x7ff90, new FormatInfo(Format.Bc6HUfloat, 4, 4, 16) }, - { 0x7ff91, new FormatInfo(Format.Bc6HSfloat, 4, 4, 16) }, + { 0x7ff90, new FormatInfo(Format.Bc6HSfloat, 4, 4, 16) }, + { 0x7ff91, new FormatInfo(Format.Bc6HUfloat, 4, 4, 16) }, { 0x24940, new FormatInfo(Format.Astc4x4Unorm, 4, 4, 16) }, { 0x24950, new FormatInfo(Format.Astc5x4Unorm, 5, 4, 16) }, { 0x24941, new FormatInfo(Format.Astc5x5Unorm, 5, 5, 16) }, -- cgit v1.2.3