aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/textures/texture.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-05-27 12:14:08 -0400
committerGitHub <noreply@github.com>2018-05-27 12:14:08 -0400
commit7f155ba713c75f22e78068980d595ffc04b044fe (patch)
tree196ce0da28e2de37eb69df9b9fdbf3389a4bd3ac /src/video_core/textures/texture.h
parent7029daa32e064caf27b88188a5ecef76b4807726 (diff)
parent7ddc872b529192fd822c1d759ccfac2398b6ca2a (diff)
Merge pull request #476 from Subv/a1bgr5
GPU: Implemented the A1B5G5R5 texture format (0x14)
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 dc004d361..b33e9bab3 100644
--- a/src/video_core/textures/texture.h
+++ b/src/video_core/textures/texture.h
@@ -16,6 +16,7 @@ namespace Texture {
enum class TextureFormat : u32 {
A8R8G8B8 = 0x8,
A2B10G10R10 = 0x9,
+ A1B5G5R5 = 0x14,
B5G6R5 = 0x15,
DXT1 = 0x24,
DXT23 = 0x25,