video_core: Implement RG8_SINT render target and fix RG8_UINT

This commit is contained in:
ReinUsesLisp 2020-06-30 04:13:46 -03:00
parent c6e852f5c5
commit 469c89d31a
7 changed files with 14 additions and 1 deletions

View file

@ -150,6 +150,8 @@ PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format)
return PixelFormat::RG8U;
case Tegra::RenderTargetFormat::RG8_SNORM:
return PixelFormat::RG8S;
case Tegra::RenderTargetFormat::RG8_SINT:
return PixelFormat::RG8I;
case Tegra::RenderTargetFormat::RG8_UINT:
return PixelFormat::RG8UI;
case Tegra::RenderTargetFormat::R16_UNORM: