summaryrefslogtreecommitdiff
path: root/src/video_core/textures/texture.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/textures/texture.h')
-rw-r--r--src/video_core/textures/texture.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_core/textures/texture.h b/src/video_core/textures/texture.h
index c12ed6e1d..9d443ea90 100644
--- a/src/video_core/textures/texture.h
+++ b/src/video_core/textures/texture.h
@@ -13,8 +13,10 @@ namespace Tegra {
13namespace Texture { 13namespace Texture {
14 14
15enum class TextureFormat : u32 { 15enum class TextureFormat : u32 {
16 A8R8G8B8 = 8, 16 A8R8G8B8 = 0x8,
17 DXT1 = 0x24, 17 DXT1 = 0x24,
18 DXT23 = 0x25,
19 DXT45 = 0x26,
18}; 20};
19 21
20enum class TextureType : u32 { 22enum class TextureType : u32 {