aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Gpu/Texture/TextureReader.cs
diff options
context:
space:
mode:
authorHorrorTroll <sonicvipduc@gmail.com>2018-09-02 04:25:49 +0700
committergdkchan <gab.dark.100@gmail.com>2018-09-01 18:25:49 -0300
commitbf28d8f1aa4288fba9d2204b8fe1af573bc2a72e (patch)
treeb9c42f8e842ad42ed84d7c15a4939bd71f3b7033 /Ryujinx.HLE/Gpu/Texture/TextureReader.cs
parent35778afef953643a40c4455ef9261bca69c100f5 (diff)
Add BGRA8Unorm, BGRA8Srgb, ZF32_X24S8 texture format (#377)
* Add BGRA8Unorm, BGRA8Srgb, ZF32_X24S8 texture format * Add BGRA8Unorm, BGRA8Srgb, ZF32_X24S8 texture format * Revert "Add BGRA8Unorm, BGRA8Srgb, ZF32_X24S8 texture format" This reverts commit aea5c9db3a5e0b11545c3520f885e411a3587113. * Conflicts fix * Wrong fix * E * e
Diffstat (limited to 'Ryujinx.HLE/Gpu/Texture/TextureReader.cs')
-rw-r--r--Ryujinx.HLE/Gpu/Texture/TextureReader.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.HLE/Gpu/Texture/TextureReader.cs b/Ryujinx.HLE/Gpu/Texture/TextureReader.cs
index 6bbc41ca..65fa7e6e 100644
--- a/Ryujinx.HLE/Gpu/Texture/TextureReader.cs
+++ b/Ryujinx.HLE/Gpu/Texture/TextureReader.cs
@@ -33,6 +33,7 @@ namespace Ryujinx.HLE.Gpu.Texture
case GalTextureFormat.BC4: return Read8Bpt4x4 (Memory, Texture);
case GalTextureFormat.BC5: return Read16BptCompressedTexture(Memory, Texture, 4, 4);
case GalTextureFormat.ZF32: return Read4Bpp (Memory, Texture);
+ case GalTextureFormat.ZF32_X24S8: return Read8Bpp (Memory, Texture);
case GalTextureFormat.Astc2D4x4: return Read16BptCompressedTexture(Memory, Texture, 4, 4);
case GalTextureFormat.Astc2D5x5: return Read16BptCompressedTexture(Memory, Texture, 5, 5);
case GalTextureFormat.Astc2D6x6: return Read16BptCompressedTexture(Memory, Texture, 6, 6);