diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-25 07:32:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-25 07:32:18 -0700 |
commit | 704824d50a2a99ed44e80bd37dfdc6e84ac91fe2 (patch) | |
tree | bb938542bf0e534f51e85e91ba04dd38541754fb /src/video_core/gpu.h | |
parent | 184324c2f061fad4125291f7def8b683a42e8e8a (diff) | |
parent | 4f574201ea31b189b09cb0b52d9fc03f3db82b37 (diff) |
Merge pull request #814 from Subv/rt_r8
GPU: Allow the usage of R8 as a render target format.
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 58501ca8b..ba7b81571 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -24,6 +24,7 @@ enum class RenderTargetFormat : u32 { RGBA8_UNORM = 0xD5, RGBA8_SRGB = 0xD6, R11G11B10_FLOAT = 0xE0, + R8_UNORM = 0xF3, }; enum class DepthFormat : u32 { |