aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Texture/ImageUtils.cs
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2018-11-09 19:41:40 +0100
committergdkchan <gab.dark.100@gmail.com>2018-11-09 16:41:40 -0200
commitfdd576788739044dd99ecb705ee4487f48743cea (patch)
treef34f245ec7202f01db05a0f91aa118bef96c1c49 /Ryujinx.Graphics/Texture/ImageUtils.cs
parenta4822b7946cc9641f7f33d5df4a0d940a1b8c93c (diff)
Update ImageUtils.cs (#494)
Fix `GalImageFormat.D32S8` definition.
Diffstat (limited to 'Ryujinx.Graphics/Texture/ImageUtils.cs')
-rw-r--r--Ryujinx.Graphics/Texture/ImageUtils.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Graphics/Texture/ImageUtils.cs b/Ryujinx.Graphics/Texture/ImageUtils.cs
index 97da17a0..b69cd0ae 100644
--- a/Ryujinx.Graphics/Texture/ImageUtils.cs
+++ b/Ryujinx.Graphics/Texture/ImageUtils.cs
@@ -61,7 +61,7 @@ namespace Ryujinx.Graphics.Texture
{ GalTextureFormat.R11G11B10F, GalImageFormat.R11G11B10 | Float },
{ GalTextureFormat.D24S8, GalImageFormat.D24S8 | Unorm | Uint },
{ GalTextureFormat.D32F, GalImageFormat.D32 | Float },
- { GalTextureFormat.D32FX24S8, GalImageFormat.D32S8 | Unorm },
+ { GalTextureFormat.D32FX24S8, GalImageFormat.D32S8 | Float },
{ GalTextureFormat.D16, GalImageFormat.D16 | Unorm },
//Compressed formats
@@ -397,4 +397,4 @@ namespace Ryujinx.Graphics.Texture
}
}
}
-} \ No newline at end of file
+}