video_core: Implement RGBA16_SINT render target

This commit is contained in:
ReinUsesLisp 2020-06-30 04:38:29 -03:00
parent f8136072ff
commit 5ba68f5fab
7 changed files with 13 additions and 0 deletions

View file

@ -100,6 +100,8 @@ PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format)
return PixelFormat::RGBA16U;
case Tegra::RenderTargetFormat::RGBA16_SNORM:
return PixelFormat::RGBA16S;
case Tegra::RenderTargetFormat::RGBA16_SINT:
return PixelFormat::RGBA16I;
case Tegra::RenderTargetFormat::RGBA16_UINT:
return PixelFormat::RGBA16UI;
case Tegra::RenderTargetFormat::RGBA16_FLOAT: