summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-18 04:17:07 +0200
committerGitHub <noreply@github.com>2018-04-18 04:17:07 +0200
commitc93ea96366da6907d8c5d0a4f94c9c4ed7dd39ca (patch)
treec9843ee4078d8d1180c92d033fad123d28c6a1a0 /src/video_core/textures
parentMerge pull request #344 from bunnei/shader-decompiler-p2 (diff)
parentgl_rasterizer_cache: Add missing LOG statements. (diff)
downloadyuzu-c93ea96366da6907d8c5d0a4f94c9c4ed7dd39ca.tar
yuzu-c93ea96366da6907d8c5d0a4f94c9c4ed7dd39ca.tar.gz
yuzu-c93ea96366da6907d8c5d0a4f94c9c4ed7dd39ca.tar.bz2
yuzu-c93ea96366da6907d8c5d0a4f94c9c4ed7dd39ca.tar.lz
yuzu-c93ea96366da6907d8c5d0a4f94c9c4ed7dd39ca.tar.xz
yuzu-c93ea96366da6907d8c5d0a4f94c9c4ed7dd39ca.tar.zst
yuzu-c93ea96366da6907d8c5d0a4f94c9c4ed7dd39ca.zip
Diffstat (limited to 'src/video_core/textures')
-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 {
namespace Texture {
enum class TextureFormat : u32 {
- A8R8G8B8 = 8,
+ A8R8G8B8 = 0x8,
DXT1 = 0x24,
+ DXT23 = 0x25,
+ DXT45 = 0x26,
};
enum class TextureType : u32 {