diff options
| author | bunnei <bunneidev@gmail.com> | 2018-10-28 00:24:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-28 00:24:36 -0400 |
| commit | 1fca683388c3c96dd61f271772a4de43bd43a00b (patch) | |
| tree | 5f7a74be1a36768819c2cd413b1ad05fd8086f90 /src/video_core/textures | |
| parent | a9d60c6103bd67881c0e2c92528da0897a5e1f16 (diff) | |
| parent | 0287b2be6d1edeecea26250e5cd8d3067ff614af (diff) | |
Merge pull request #1582 from Tinob/master
Implement sRGB support
Diffstat (limited to 'src/video_core/textures')
| -rw-r--r-- | src/video_core/textures/texture.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/video_core/textures/texture.h b/src/video_core/textures/texture.h index 5947bd2b9..d12d2ecb8 100644 --- a/src/video_core/textures/texture.h +++ b/src/video_core/textures/texture.h @@ -173,6 +173,7 @@ struct TICEntry { }; union { BitField<0, 16, u32> width_minus_1; + BitField<22, 1, u32> srgb_conversion; BitField<23, 4, TextureType> texture_type; }; union { @@ -227,6 +228,10 @@ struct TICEntry { return header_version == TICHeaderVersion::BlockLinear || header_version == TICHeaderVersion::BlockLinearColorKey; } + + bool IsSrgbConversionEnabled() const { + return srgb_conversion != 0; + } }; static_assert(sizeof(TICEntry) == 0x20, "TICEntry has wrong size"); |
