Browse Source
Merge pull request #1329 from raven02/bgr5a1u
Implement RenderTargetFormat::BGR5A1_UNORM
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
0 deletions
-
src/video_core/gpu.h
-
src/video_core/renderer_opengl/gl_rasterizer_cache.h
|
|
|
@ -42,6 +42,7 @@ enum class RenderTargetFormat : u32 { |
|
|
|
R32_UINT = 0xE4, |
|
|
|
R32_FLOAT = 0xE5, |
|
|
|
B5G6R5_UNORM = 0xE8, |
|
|
|
BGR5A1_UNORM = 0xE9, |
|
|
|
RG8_UNORM = 0xEA, |
|
|
|
RG8_SNORM = 0xEB, |
|
|
|
R16_UNORM = 0xEE, |
|
|
|
|
|
|
|
@ -319,6 +319,8 @@ struct SurfaceParams { |
|
|
|
return PixelFormat::R11FG11FB10F; |
|
|
|
case Tegra::RenderTargetFormat::B5G6R5_UNORM: |
|
|
|
return PixelFormat::B5G6R5U; |
|
|
|
case Tegra::RenderTargetFormat::BGR5A1_UNORM: |
|
|
|
return PixelFormat::A1B5G5R5U; |
|
|
|
case Tegra::RenderTargetFormat::RGBA32_UINT: |
|
|
|
return PixelFormat::RGBA32UI; |
|
|
|
case Tegra::RenderTargetFormat::R8_UNORM: |
|
|
|
@ -581,6 +583,7 @@ struct SurfaceParams { |
|
|
|
case Tegra::RenderTargetFormat::RG16_UNORM: |
|
|
|
case Tegra::RenderTargetFormat::R16_UNORM: |
|
|
|
case Tegra::RenderTargetFormat::B5G6R5_UNORM: |
|
|
|
case Tegra::RenderTargetFormat::BGR5A1_UNORM: |
|
|
|
case Tegra::RenderTargetFormat::RG8_UNORM: |
|
|
|
case Tegra::RenderTargetFormat::RGBA16_UNORM: |
|
|
|
return ComponentType::UNorm; |
|
|
|
|