aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/textures/texture.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-18 20:20:51 -0400
committerGitHub <noreply@github.com>2018-04-18 20:20:51 -0400
commit60e6e8953ef764eb2db46d336623831e6f0cc193 (patch)
tree35588db31eb7b9cfe98954c214dbb14df42e8ac2 /src/video_core/textures/texture.h
parentce4f159b1cf2aa090e41dc0e2fbd65aa6a31942e (diff)
parent2985056340b04c81df6afcf841dd541c94204817 (diff)
Merge pull request #351 from Subv/tex_formats
GPU: Implemented the B5G6R5 format.
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 09d2317e0..86e45aa88 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,
+ B5G6R5 = 0x15,
DXT1 = 0x24,
DXT23 = 0x25,
DXT45 = 0x26,