aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Gpu
diff options
context:
space:
mode:
authorjcm <john.moody@coloradocollege.edu>2023-08-07 11:54:05 -0600
committerGitHub <noreply@github.com>2023-08-07 18:54:05 +0100
commit773e239db7ceb2c55aa15f9787add4430edcdfcf (patch)
treee2c712bc0bda2058a1d68e0b6158293a07f012ae /src/Ryujinx.Graphics.Gpu
parent42750a74f82ee69cabfaf3c5497af6a8ebc13eca (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.cs5
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
}