From f61b7818c3330fa0cda3fcde5b1de51b1477bfa0 Mon Sep 17 00:00:00 2001 From: jcm Date: Wed, 4 Oct 2023 12:15:37 -0500 Subject: Avalonia: Add macOS check for Color Space Passthrough (#5754) * add macOS check for color passthrough * use existing IsMacOS property --------- Co-authored-by: jcm --- src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs') diff --git a/src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs b/src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs index 9c61becd..604e3406 100644 --- a/src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs +++ b/src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs @@ -147,6 +147,7 @@ namespace Ryujinx.Ava.UI.ViewModels public bool EnableTextureRecompression { get; set; } public bool EnableMacroHLE { get; set; } public bool EnableColorSpacePassthrough { get; set; } + public bool ColorSpacePassthroughAvailable => IsMacOS; public bool EnableFileLog { get; set; } public bool EnableStub { get; set; } public bool EnableInfo { get; set; } -- cgit v1.2.3