summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-06-14 22:40:04 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-06-21 02:38:34 +0200
commit082740d34db0996a0af73d7680c57e1abb31c712 (patch)
treebcc9ecb6af93114eaf008f8a576b1a99b9f189fe /src/video_core/textures
parenttexture_cache: Initialize all siblings to invalid pixel format. (diff)
downloadyuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar
yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar.gz
yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar.bz2
yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar.lz
yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar.xz
yuzu-082740d34db0996a0af73d7680c57e1abb31c712.tar.zst
yuzu-082740d34db0996a0af73d7680c57e1abb31c712.zip
Diffstat (limited to 'src/video_core/textures')
-rw-r--r--src/video_core/textures/texture.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/textures/texture.h b/src/video_core/textures/texture.h
index ddeed73d0..e3be018b9 100644
--- a/src/video_core/textures/texture.h
+++ b/src/video_core/textures/texture.h
@@ -52,9 +52,9 @@ enum class TextureFormat : u32 {
DXT45 = 0x26,
DXN1 = 0x27,
DXN2 = 0x28,
- Z24S8 = 0x29,
+ S8Z24 = 0x29,
X8Z24 = 0x2a,
- S8Z24 = 0x2b,
+ Z24S8 = 0x2b,
X4V4Z24__COV4R4V = 0x2c,
X4V4Z24__COV8R8V = 0x2d,
V8Z24__COV4R12V = 0x2e,