diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-20 10:54:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-20 10:54:51 -0400 |
commit | ce4b77bd7d2b4f9403fb14b9bd1d4200fd9fa4c7 (patch) | |
tree | d5e7648a42947e2fb50be20e8c80b0975e949380 /src/video_core/gpu.h | |
parent | 6ee8b15abe4d0d78439e93c9d49da1331f24bdbc (diff) | |
parent | 23d45715dc6d51299984cd03300891846614e314 (diff) |
Merge pull request #1120 from ogniK5377/rgba8-uint
Implemented RGBA8_UINT
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 97dcccb92..2697e1c27 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -30,6 +30,7 @@ enum class RenderTargetFormat : u32 { RGBA8_UNORM = 0xD5, RGBA8_SRGB = 0xD6, RGBA8_SNORM = 0xD7, + RGBA8_UINT = 0xD9, RG16_UNORM = 0xDA, RG16_SNORM = 0xDB, RG16_SINT = 0xDC, |