diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2020-03-15 21:24:53 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-15 21:24:53 -0300 |
commit | 7cc46a6faae50080e96a5ba5e8e0101e12573de8 (patch) | |
tree | 1811a5ff13e92377db955f1483d897a4e37d15ad /src/video_core/gpu.h | |
parent | ddafc997763dc67f790958e04a8c07a5317da549 (diff) | |
parent | 4dcca90ef436b2177efa1108ee2504700bf014b4 (diff) |
Merge pull request #3501 from ReinUsesLisp/rgba16-snorm
video_core: Implement RGBA16_SNORM
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 ba8c9d665..64acb17df 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -39,6 +39,7 @@ enum class RenderTargetFormat : u32 { RGBA32_FLOAT = 0xC0, RGBA32_UINT = 0xC2, RGBA16_UNORM = 0xC6, + RGBA16_SNORM = 0xC7, RGBA16_UINT = 0xC9, RGBA16_FLOAT = 0xCA, RG32_FLOAT = 0xCB, |