diff options
author | raven02 <jacky.kktsui@yahoo.com.hk> | 2018-09-15 23:48:02 +0800 |
---|---|---|
committer | raven02 <jacky.kktsui@yahoo.com.hk> | 2018-09-16 00:21:42 +0800 |
commit | 0019a36b41dae2afb23825ed88f90147d0633d37 (patch) | |
tree | c760d87c88e75df6d2d36f35072cb0ac0d141b0b /src/video_core/gpu.h | |
parent | df5a44a40b9d691f1e80f369c4aaa6ed89676955 (diff) |
Implement RenderTargetFormat::BGR5A1_UNORM (Pokken Tournament DX)
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 589a59b4f..ec83aa1a3 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, |