video_core: Implement RGBA16_SNORM
Implement RGBA16_SNORM with the current API. Nothing special here.
This commit is contained in:
parent
586bdc38b0
commit
25cfbc7786
8 changed files with 84 additions and 69 deletions
|
@ -111,6 +111,8 @@ PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format)
|
|||
return PixelFormat::RGBA16F;
|
||||
case Tegra::RenderTargetFormat::RGBA16_UNORM:
|
||||
return PixelFormat::RGBA16U;
|
||||
case Tegra::RenderTargetFormat::RGBA16_SNORM:
|
||||
return PixelFormat::RGBA16S;
|
||||
case Tegra::RenderTargetFormat::RGBA16_UINT:
|
||||
return PixelFormat::RGBA16UI;
|
||||
case Tegra::RenderTargetFormat::RGBA32_FLOAT:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue