summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/texture.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-22 03:43:17 +0200
committerGitHub <noreply@github.com>2018-04-22 03:43:17 +0200
commitebb8e06df0bb21aa1c61ab6113c4c3d45dec8506 (patch)
tree184a2ca7394607b8b0e57c3390edf61be58e15ea /src/video_core/textures/texture.h
parentMerge pull request #377 from adityaruplaha/sdl2-fullscreen (diff)
parentGPU: Implement the A2BGR10 texture format. (diff)
downloadyuzu-ebb8e06df0bb21aa1c61ab6113c4c3d45dec8506.tar
yuzu-ebb8e06df0bb21aa1c61ab6113c4c3d45dec8506.tar.gz
yuzu-ebb8e06df0bb21aa1c61ab6113c4c3d45dec8506.tar.bz2
yuzu-ebb8e06df0bb21aa1c61ab6113c4c3d45dec8506.tar.lz
yuzu-ebb8e06df0bb21aa1c61ab6113c4c3d45dec8506.tar.xz
yuzu-ebb8e06df0bb21aa1c61ab6113c4c3d45dec8506.tar.zst
yuzu-ebb8e06df0bb21aa1c61ab6113c4c3d45dec8506.zip
Diffstat (limited to 'src/video_core/textures/texture.h')
-rw-r--r--src/video_core/textures/texture.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/textures/texture.h b/src/video_core/textures/texture.h
index 86e45aa88..dc004d361 100644
--- a/src/video_core/textures/texture.h
+++ b/src/video_core/textures/texture.h
@@ -15,6 +15,7 @@ namespace Texture {
enum class TextureFormat : u32 {
A8R8G8B8 = 0x8,
+ A2B10G10R10 = 0x9,
B5G6R5 = 0x15,
DXT1 = 0x24,
DXT23 = 0x25,