Merge pull request #1284 from bunnei/bgra8_srgb

gl_rasterizer_cache: Implement RenderTargetFormat::BGRA8_SRGB.
This commit is contained in:
bunnei 2018-09-10 20:28:00 -04:00 committed by GitHub
commit d884e805c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 0 deletions

View file

@ -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,