From 9df8e924fb3cafabd0fa7728fe286595a39575fc Mon Sep 17 00:00:00 2001 From: bunnei Date: Thu, 12 Apr 2018 23:50:35 -0400 Subject: [PATCH] texture: Add missing formats. --- src/video_core/textures/texture.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 { namespace Texture { enum class TextureFormat : u32 { - A8R8G8B8 = 8, + A8R8G8B8 = 0x8, DXT1 = 0x24, + DXT23 = 0x25, + DXT45 = 0x26, }; enum class TextureType : u32 {