diff options
| author | jcm <john.moody@coloradocollege.edu> | 2023-08-07 11:54:05 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-07 18:54:05 +0100 |
| commit | 773e239db7ceb2c55aa15f9787add4430edcdfcf (patch) | |
| tree | e2c712bc0bda2058a1d68e0b6158293a07f012ae /src/Ryujinx.Graphics.Gpu | |
| parent | 42750a74f82ee69cabfaf3c5497af6a8ebc13eca (diff) | |
Implement color space passthrough option (#5531)
Co-authored-by: jcm <butt@butts.com>
Diffstat (limited to 'src/Ryujinx.Graphics.Gpu')
| -rw-r--r-- | src/Ryujinx.Graphics.Gpu/GraphicsConfig.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Ryujinx.Graphics.Gpu/GraphicsConfig.cs b/src/Ryujinx.Graphics.Gpu/GraphicsConfig.cs index 4dfb9338..fbb7399c 100644 --- a/src/Ryujinx.Graphics.Gpu/GraphicsConfig.cs +++ b/src/Ryujinx.Graphics.Gpu/GraphicsConfig.cs @@ -67,6 +67,11 @@ namespace Ryujinx.Graphics.Gpu /// Enables or disables recompression of compressed textures that are not natively supported by the host. /// </summary> public static bool EnableTextureRecompression = false; + + /// <summary> + /// Enables or disables color space passthrough, if available. + /// </summary> + public static bool EnableColorSpacePassthrough = false; } #pragma warning restore CA2211 } |
