aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/textures/texture.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-04-18 18:11:14 -0500
committerSubv <subv2112@gmail.com>2018-04-18 18:16:45 -0500
commit2985056340b04c81df6afcf841dd541c94204817 (patch)
tree6129616b49d65f4dce32be3f702a9f66cbc51c87 /src/video_core/textures/texture.h
parent6a999cf800a56b5c13baba64dc560e05245c5b09 (diff)
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,