video_core: Implement RGBA16_SNORM

Implement RGBA16_SNORM with the current API. Nothing special here.
This commit is contained in:
ReinUsesLisp 2020-03-12 21:42:33 -03:00
parent 586bdc38b0
commit 25cfbc7786
8 changed files with 84 additions and 69 deletions

View file

@ -111,6 +111,8 @@ PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format)
return PixelFormat::RGBA16F;
case Tegra::RenderTargetFormat::RGBA16_UNORM:
return PixelFormat::RGBA16U;
case Tegra::RenderTargetFormat::RGBA16_SNORM:
return PixelFormat::RGBA16S;
case Tegra::RenderTargetFormat::RGBA16_UINT:
return PixelFormat::RGBA16UI;
case Tegra::RenderTargetFormat::RGBA32_FLOAT: