summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-10 20:28:00 -0400
committerGitHub <noreply@github.com>2018-09-10 20:28:00 -0400
commitd884e805c534ce6852b962af12148df5b5b950f8 (patch)
treeadea0e4090b95251e3c16485ebcd2c57b1a9fa89 /src/video_core/gpu.h
parent4bea6657ef0cabbb769fb260cd96911236939d6a (diff)
parent1c34498368887c3c956539eb094cc337ca594742 (diff)
Merge pull request #1284 from bunnei/bgra8_srgb
gl_rasterizer_cache: Implement RenderTargetFormat::BGRA8_SRGB.
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,