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.GAL/Multithreading/ThreadedWindow.cs | |
parent | 42750a74f82ee69cabfaf3c5497af6a8ebc13eca (diff) |
Implement color space passthrough option (#5531)1.1.977
Co-authored-by: jcm <butt@butts.com>
Diffstat (limited to 'src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs')
-rw-r--r-- | src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs b/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs index 3c4d5414..4f1b795a 100644 --- a/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs +++ b/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs @@ -38,5 +38,7 @@ namespace Ryujinx.Graphics.GAL.Multithreading public void SetScalingFilter(ScalingFilter type) { } public void SetScalingFilterLevel(float level) { } + + public void SetColorSpacePassthrough(bool colorSpacePassthroughEnabled) { } } } |