texture: Implement R8G8UI

- Used by The Walking Dead: The Final Season
This commit is contained in:
Morph 2020-04-30 12:17:02 -04:00
parent e0047b0ead
commit 6665cd04f1
8 changed files with 52 additions and 38 deletions

View file

@ -145,6 +145,8 @@ PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format)
return PixelFormat::RG8U;
case Tegra::RenderTargetFormat::RG8_SNORM:
return PixelFormat::RG8S;
case Tegra::RenderTargetFormat::RG8_UINT:
return PixelFormat::RG8UI;
case Tegra::RenderTargetFormat::R16_FLOAT:
return PixelFormat::R16F;
case Tegra::RenderTargetFormat::R16_UNORM: