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