diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2022-11-06 11:08:22 +0100 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2022-11-24 20:35:44 +0100 |
commit | 5fbd6954efbfe3dd95fcd496cd25664c092947fc (patch) | |
tree | ca9c4a7e1855b4406531eada1e84b6cb26802122 /src/video_core/gpu.h | |
parent | Fermi2D: Rework blit engine and add a software blitter. (diff) | |
download | yuzu-5fbd6954efbfe3dd95fcd496cd25664c092947fc.tar yuzu-5fbd6954efbfe3dd95fcd496cd25664c092947fc.tar.gz yuzu-5fbd6954efbfe3dd95fcd496cd25664c092947fc.tar.bz2 yuzu-5fbd6954efbfe3dd95fcd496cd25664c092947fc.tar.lz yuzu-5fbd6954efbfe3dd95fcd496cd25664c092947fc.tar.xz yuzu-5fbd6954efbfe3dd95fcd496cd25664c092947fc.tar.zst yuzu-5fbd6954efbfe3dd95fcd496cd25664c092947fc.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/gpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index d0709dc69..87ebf2054 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -61,8 +61,8 @@ enum class RenderTargetFormat : u32 { R32_SINT = 0xE3, R32_UINT = 0xE4, R32_FLOAT = 0xE5, - // X8R8G8B8_UNORM = 0xE6, - // X8R8G8B8_SRGB = 0xE7, + X8R8G8B8_UNORM = 0xE6, + X8R8G8B8_SRGB = 0xE7, R5G6B5_UNORM = 0xE8, A1R5G5B5_UNORM = 0xE9, R8G8_UNORM = 0xEA, |