diff options
| author | 2018-04-17 22:17:07 -0400 | |
|---|---|---|
| committer | 2018-04-17 22:17:07 -0400 | |
| commit | c93ea96366da6907d8c5d0a4f94c9c4ed7dd39ca (patch) | |
| tree | c9843ee4078d8d1180c92d033fad123d28c6a1a0 /src/video_core/textures | |
| parent | Merge pull request #344 from bunnei/shader-decompiler-p2 (diff) | |
| parent | gl_rasterizer_cache: Add missing LOG statements. (diff) | |
| download | yuzu-c93ea96366da6907d8c5d0a4f94c9c4ed7dd39ca.tar.gz yuzu-c93ea96366da6907d8c5d0a4f94c9c4ed7dd39ca.tar.xz yuzu-c93ea96366da6907d8c5d0a4f94c9c4ed7dd39ca.zip | |
Merge pull request #346 from bunnei/misc-gpu-improvements
Misc gpu improvements
Diffstat (limited to 'src/video_core/textures')
| -rw-r--r-- | src/video_core/textures/texture.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_core/textures/texture.h b/src/video_core/textures/texture.h index c12ed6e1d..9d443ea90 100644 --- a/src/video_core/textures/texture.h +++ b/src/video_core/textures/texture.h | |||
| @@ -13,8 +13,10 @@ namespace Tegra { | |||
| 13 | namespace Texture { | 13 | namespace Texture { |
| 14 | 14 | ||
| 15 | enum class TextureFormat : u32 { | 15 | enum class TextureFormat : u32 { |
| 16 | A8R8G8B8 = 8, | 16 | A8R8G8B8 = 0x8, |
| 17 | DXT1 = 0x24, | 17 | DXT1 = 0x24, |
| 18 | DXT23 = 0x25, | ||
| 19 | DXT45 = 0x26, | ||
| 18 | }; | 20 | }; |
| 19 | 21 | ||
| 20 | enum class TextureType : u32 { | 22 | enum class TextureType : u32 { |