video_core: Implement RG32_SINT render target

This commit is contained in:
ReinUsesLisp 2020-06-30 04:23:03 -03:00
parent 469c89d31a
commit ad494d0a3c
7 changed files with 13 additions and 0 deletions

View file

@ -106,6 +106,8 @@ PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format)
return PixelFormat::RGBA16F;
case Tegra::RenderTargetFormat::RG32_FLOAT:
return PixelFormat::RG32F;
case Tegra::RenderTargetFormat::RG32_SINT:
return PixelFormat::RG32I;
case Tegra::RenderTargetFormat::RG32_UINT:
return PixelFormat::RG32UI;
case Tegra::RenderTargetFormat::RGBX16_FLOAT: