video_core: Implement RGBA16_SINT render target

This commit is contained in:
ReinUsesLisp 2020-06-30 04:38:29 -03:00
parent 977d6c46f3
commit 95c0f5afe5
7 changed files with 13 additions and 0 deletions

View file

@ -43,6 +43,7 @@ enum class RenderTargetFormat : u32 {
RGBA32_UINT = 0xC2,
RGBA16_UNORM = 0xC6,
RGBA16_SNORM = 0xC7,
RGBA16_SINT = 0xC8,
RGBA16_UINT = 0xC9,
RGBA16_FLOAT = 0xCA,
RG32_FLOAT = 0xCB,