mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 04:38:02 -05:00
video_core: Implement RGBA32_SINT render target
This commit is contained in:
@ -94,6 +94,8 @@ PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format)
|
||||
switch (format) {
|
||||
case Tegra::RenderTargetFormat::RGBA32_FLOAT:
|
||||
return PixelFormat::RGBA32F;
|
||||
case Tegra::RenderTargetFormat::RGBA32_SINT:
|
||||
return PixelFormat::RGBA32I;
|
||||
case Tegra::RenderTargetFormat::RGBA32_UINT:
|
||||
return PixelFormat::RGBA32UI;
|
||||
case Tegra::RenderTargetFormat::RGBA16_UNORM:
|
||||
|
Reference in New Issue
Block a user