diff options
| author | 2018-09-17 09:49:00 -0400 | |
|---|---|---|
| committer | 2018-09-17 09:49:00 -0400 | |
| commit | 3be048e50a2090caf1eeeb2373c7524ecc177ce8 (patch) | |
| tree | 2e1c46294d015e4a634edee7adf0e9f11b4a8320 /src/video_core/gpu.h | |
| parent | Merge pull request #1335 from lioncash/copy (diff) | |
| parent | Implement RenderTargetFormat::BGR5A1_UNORM (Pokken Tournament DX) (diff) | |
| download | yuzu-3be048e50a2090caf1eeeb2373c7524ecc177ce8.tar.gz yuzu-3be048e50a2090caf1eeeb2373c7524ecc177ce8.tar.xz yuzu-3be048e50a2090caf1eeeb2373c7524ecc177ce8.zip | |
Merge pull request #1329 from raven02/bgr5a1u
Implement RenderTargetFormat::BGR5A1_UNORM
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 7329ca766..5cc1e19ca 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h | |||
| @@ -42,6 +42,7 @@ enum class RenderTargetFormat : u32 { | |||
| 42 | R32_UINT = 0xE4, | 42 | R32_UINT = 0xE4, |
| 43 | R32_FLOAT = 0xE5, | 43 | R32_FLOAT = 0xE5, |
| 44 | B5G6R5_UNORM = 0xE8, | 44 | B5G6R5_UNORM = 0xE8, |
| 45 | BGR5A1_UNORM = 0xE9, | ||
| 45 | RG8_UNORM = 0xEA, | 46 | RG8_UNORM = 0xEA, |
| 46 | RG8_SNORM = 0xEB, | 47 | RG8_SNORM = 0xEB, |
| 47 | R16_UNORM = 0xEE, | 48 | R16_UNORM = 0xEE, |