diff options
| author | 2018-05-27 09:02:05 -0500 | |
|---|---|---|
| committer | 2018-05-27 09:02:05 -0500 | |
| commit | 7ddc872b529192fd822c1d759ccfac2398b6ca2a (patch) | |
| tree | 5f839f0f1337359b2a3bb66c2e9d0d8b3d268ff0 /src/video_core/textures/texture.h | |
| parent | Add & correct miscellaneous things (#470) (diff) | |
| download | yuzu-7ddc872b529192fd822c1d759ccfac2398b6ca2a.tar.gz yuzu-7ddc872b529192fd822c1d759ccfac2398b6ca2a.tar.xz yuzu-7ddc872b529192fd822c1d759ccfac2398b6ca2a.zip | |
GPU: Implemented the A1B5G5R5 texture format (0x14)
Diffstat (limited to 'src/video_core/textures/texture.h')
| -rw-r--r-- | src/video_core/textures/texture.h | 1 |
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 { | |||
| 16 | enum class TextureFormat : u32 { | 16 | enum class TextureFormat : u32 { |
| 17 | A8R8G8B8 = 0x8, | 17 | A8R8G8B8 = 0x8, |
| 18 | A2B10G10R10 = 0x9, | 18 | A2B10G10R10 = 0x9, |
| 19 | A1B5G5R5 = 0x14, | ||
| 19 | B5G6R5 = 0x15, | 20 | B5G6R5 = 0x15, |
| 20 | DXT1 = 0x24, | 21 | DXT1 = 0x24, |
| 21 | DXT23 = 0x25, | 22 | DXT23 = 0x25, |