video_core: Implement R8_SNORM render target

This commit is contained in:
ReinUsesLisp 2020-06-30 03:51:42 -03:00
parent 505c206eb8
commit fd33e996e0
7 changed files with 13 additions and 0 deletions

View file

@ -75,6 +75,7 @@ enum class RenderTargetFormat : u32 {
R16_UINT = 0xF1,
R16_FLOAT = 0xF2,
R8_UNORM = 0xF3,
R8_SNORM = 0xF4,
R8_UINT = 0xF6,
};