mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-14 05:17:51 +00:00
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
|
@ -49,6 +49,7 @@ static constexpr ConversionArray morton_to_linear_fns = {
|
|||
MortonCopy<true, PixelFormat::A1B5G5R5U>,
|
||||
MortonCopy<true, PixelFormat::R8U>,
|
||||
MortonCopy<true, PixelFormat::R8S>,
|
||||
MortonCopy<true, PixelFormat::R8I>,
|
||||
MortonCopy<true, PixelFormat::R8UI>,
|
||||
MortonCopy<true, PixelFormat::RGBA16F>,
|
||||
MortonCopy<true, PixelFormat::RGBA16U>,
|
||||
|
@ -133,6 +134,7 @@ static constexpr ConversionArray linear_to_morton_fns = {
|
|||
MortonCopy<false, PixelFormat::A1B5G5R5U>,
|
||||
MortonCopy<false, PixelFormat::R8U>,
|
||||
MortonCopy<false, PixelFormat::R8S>,
|
||||
MortonCopy<false, PixelFormat::R8I>,
|
||||
MortonCopy<false, PixelFormat::R8UI>,
|
||||
MortonCopy<false, PixelFormat::RGBA16F>,
|
||||
MortonCopy<false, PixelFormat::RGBA16S>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue