video_core: Implement RG8_SINT render target and fix RG8_UINT
This commit is contained in:
parent
c6e852f5c5
commit
469c89d31a
7 changed files with 14 additions and 1 deletions
|
@ -150,6 +150,8 @@ PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format)
|
|||
return PixelFormat::RG8U;
|
||||
case Tegra::RenderTargetFormat::RG8_SNORM:
|
||||
return PixelFormat::RG8S;
|
||||
case Tegra::RenderTargetFormat::RG8_SINT:
|
||||
return PixelFormat::RG8I;
|
||||
case Tegra::RenderTargetFormat::RG8_UINT:
|
||||
return PixelFormat::RG8UI;
|
||||
case Tegra::RenderTargetFormat::R16_UNORM:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue