mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-16 22:28:02 -05:00
video_core: Implement RGBA32_SINT render target
This commit is contained in:
@ -71,6 +71,7 @@ static constexpr ConversionArray morton_to_linear_fns = {
|
||||
MortonCopy<true, PixelFormat::ASTC_2D_4X4>,
|
||||
MortonCopy<true, PixelFormat::BGRA8>,
|
||||
MortonCopy<true, PixelFormat::RGBA32F>,
|
||||
MortonCopy<true, PixelFormat::RGBA32I>,
|
||||
MortonCopy<true, PixelFormat::RG32F>,
|
||||
MortonCopy<true, PixelFormat::RG32I>,
|
||||
MortonCopy<true, PixelFormat::R32F>,
|
||||
@ -161,6 +162,7 @@ static constexpr ConversionArray linear_to_morton_fns = {
|
||||
nullptr,
|
||||
MortonCopy<false, PixelFormat::BGRA8>,
|
||||
MortonCopy<false, PixelFormat::RGBA32F>,
|
||||
MortonCopy<false, PixelFormat::RGBA32I>,
|
||||
MortonCopy<false, PixelFormat::RG32F>,
|
||||
MortonCopy<false, PixelFormat::RG32I>,
|
||||
MortonCopy<false, PixelFormat::R32F>,
|
||||
|
Reference in New Issue
Block a user