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 3e9cafbee5
commit 7909860d16
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: