diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-17 09:49:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-17 09:49:00 -0400 |
commit | 3be048e50a2090caf1eeeb2373c7524ecc177ce8 (patch) | |
tree | 2e1c46294d015e4a634edee7adf0e9f11b4a8320 /src/video_core/gpu.h | |
parent | e833301e4caeddfc0147f1bf18a8c7a477a50f5a (diff) | |
parent | 0019a36b41dae2afb23825ed88f90147d0633d37 (diff) |
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 { R32_UINT = 0xE4, R32_FLOAT = 0xE5, B5G6R5_UNORM = 0xE8, + BGR5A1_UNORM = 0xE9, RG8_UNORM = 0xEA, RG8_SNORM = 0xEB, R16_UNORM = 0xEE, |