diff options
| author | 2018-06-05 21:57:16 -0500 | |
|---|---|---|
| committer | 2018-06-05 21:57:16 -0500 | |
| commit | c531a92edaae409275d9e7309d7b315d6fccf190 (patch) | |
| tree | e3a14bf936375514f99485b68b1dce05d377c93d /src/video_core/gpu.h | |
| parent | GPU: Fixed the compression factor for RGBA16F textures. (diff) | |
| download | yuzu-c531a92edaae409275d9e7309d7b315d6fccf190.tar.gz yuzu-c531a92edaae409275d9e7309d7b315d6fccf190.tar.xz yuzu-c531a92edaae409275d9e7309d7b315d6fccf190.zip | |
GPU: Implemented the R11FG11FB10F texture and rendertarget formats.
Diffstat (limited to 'src/video_core/gpu.h')
| -rw-r--r-- | src/video_core/gpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index f168a5171..2762a22ec 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h | |||
| @@ -19,6 +19,7 @@ enum class RenderTargetFormat : u32 { | |||
| 19 | RGB10_A2_UNORM = 0xD1, | 19 | RGB10_A2_UNORM = 0xD1, |
| 20 | RGBA8_UNORM = 0xD5, | 20 | RGBA8_UNORM = 0xD5, |
| 21 | RGBA8_SRGB = 0xD6, | 21 | RGBA8_SRGB = 0xD6, |
| 22 | R11G11B10_FLOAT = 0xE0, | ||
| 22 | }; | 23 | }; |
| 23 | 24 | ||
| 24 | /// Returns the number of bytes per pixel of each rendertarget format. | 25 | /// Returns the number of bytes per pixel of each rendertarget format. |