diff options
author | Subv <subv2112@gmail.com> | 2018-06-05 21:57:16 -0500 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2018-06-05 21:57:16 -0500 |
commit | c531a92edaae409275d9e7309d7b315d6fccf190 (patch) | |
tree | e3a14bf936375514f99485b68b1dce05d377c93d /src/video_core/gpu.h | |
parent | 14afc704d4706ce8aa1f195a107ec30e3d9a8c6d (diff) |
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 { RGB10_A2_UNORM = 0xD1, RGBA8_UNORM = 0xD5, RGBA8_SRGB = 0xD6, + R11G11B10_FLOAT = 0xE0, }; /// Returns the number of bytes per pixel of each rendertarget format. |