video_core: Implement R8_SINT render target
This commit is contained in:
parent
29e5516bb8
commit
c6e852f5c5
7 changed files with 13 additions and 0 deletions
|
@ -166,6 +166,8 @@ PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format)
|
|||
return PixelFormat::R8U;
|
||||
case Tegra::RenderTargetFormat::R8_SNORM:
|
||||
return PixelFormat::R8S;
|
||||
case Tegra::RenderTargetFormat::R8_SINT:
|
||||
return PixelFormat::R8I;
|
||||
case Tegra::RenderTargetFormat::R8_UINT:
|
||||
return PixelFormat::R8UI;
|
||||
default:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue