diff options
| author | 2018-07-24 16:47:50 -0500 | |
|---|---|---|
| committer | 2018-07-24 19:49:36 -0500 | |
| commit | 4f574201ea31b189b09cb0b52d9fc03f3db82b37 (patch) | |
| tree | 90a9a7149afa5c1dd14bae3ce60ec8e091565a5d /src/video_core/gpu.h | |
| parent | Merge pull request #806 from lioncash/friend (diff) | |
| download | yuzu-4f574201ea31b189b09cb0b52d9fc03f3db82b37.tar.gz yuzu-4f574201ea31b189b09cb0b52d9fc03f3db82b37.tar.xz yuzu-4f574201ea31b189b09cb0b52d9fc03f3db82b37.zip | |
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 { | |||
| 24 | RGBA8_UNORM = 0xD5, | 24 | RGBA8_UNORM = 0xD5, |
| 25 | RGBA8_SRGB = 0xD6, | 25 | RGBA8_SRGB = 0xD6, |
| 26 | R11G11B10_FLOAT = 0xE0, | 26 | R11G11B10_FLOAT = 0xE0, |
| 27 | R8_UNORM = 0xF3, | ||
| 27 | }; | 28 | }; |
| 28 | 29 | ||
| 29 | enum class DepthFormat : u32 { | 30 | enum class DepthFormat : u32 { |