diff options
| author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2020-05-09 05:28:55 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-09 05:28:55 -0300 |
| commit | 7e376af8fcd60baaa127b459e83bf716067be233 (patch) | |
| tree | 074ebb06bf109a9277cc7e6f4b1a0a491adc8fd7 /src/video_core/morton.cpp | |
| parent | a9ee6e346bf6457484d874851fcb5182dfb4e0f3 (diff) | |
| parent | 7909860d16118f3db5006ccd379c1dae27eb5a1b (diff) | |
Merge pull request #3839 from Morph1984/r8g8ui
texture: Implement R8G8UI
Diffstat (limited to 'src/video_core/morton.cpp')
| -rw-r--r-- | src/video_core/morton.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/morton.cpp b/src/video_core/morton.cpp index 6d522c318..836b25c1d 100644 --- a/src/video_core/morton.cpp +++ b/src/video_core/morton.cpp @@ -83,6 +83,7 @@ static constexpr ConversionArray morton_to_linear_fns = { MortonCopy<true, PixelFormat::RGBA8_SRGB>, MortonCopy<true, PixelFormat::RG8U>, MortonCopy<true, PixelFormat::RG8S>, + MortonCopy<true, PixelFormat::RG8UI>, MortonCopy<true, PixelFormat::RG32UI>, MortonCopy<true, PixelFormat::RGBX16F>, MortonCopy<true, PixelFormat::R32UI>, @@ -166,6 +167,7 @@ static constexpr ConversionArray linear_to_morton_fns = { MortonCopy<false, PixelFormat::RGBA8_SRGB>, MortonCopy<false, PixelFormat::RG8U>, MortonCopy<false, PixelFormat::RG8S>, + MortonCopy<false, PixelFormat::RG8UI>, MortonCopy<false, PixelFormat::RG32UI>, MortonCopy<false, PixelFormat::RGBX16F>, MortonCopy<false, PixelFormat::R32UI>, |
