summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-11 02:28:00 +0200
committerGitHub <noreply@github.com>2018-09-11 02:28:00 +0200
commitd884e805c534ce6852b962af12148df5b5b950f8 (patch)
treeadea0e4090b95251e3c16485ebcd2c57b1a9fa89 /src/video_core/gpu.h
parentMerge pull request #1288 from MysticExile/remove-multicore (diff)
parentgl_rasterizer_cache: Implement RenderTargetFormat::BGRA8_SRGB. (diff)
downloadyuzu-d884e805c534ce6852b962af12148df5b5b950f8.tar
yuzu-d884e805c534ce6852b962af12148df5b5b950f8.tar.gz
yuzu-d884e805c534ce6852b962af12148df5b5b950f8.tar.bz2
yuzu-d884e805c534ce6852b962af12148df5b5b950f8.tar.lz
yuzu-d884e805c534ce6852b962af12148df5b5b950f8.tar.xz
yuzu-d884e805c534ce6852b962af12148df5b5b950f8.tar.zst
yuzu-d884e805c534ce6852b962af12148df5b5b950f8.zip
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r--src/video_core/gpu.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h
index 4f71f99d7..589a59b4f 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -27,6 +27,7 @@ enum class RenderTargetFormat : u32 {
RG32_FLOAT = 0xCB,
RG32_UINT = 0xCD,
BGRA8_UNORM = 0xCF,
+ BGRA8_SRGB = 0xD0,
RGB10_A2_UNORM = 0xD1,
RGBA8_UNORM = 0xD5,
RGBA8_SRGB = 0xD6,