From 99313fbabf62d97b7495f4240b3998bea2856558 Mon Sep 17 00:00:00 2001 From: Gabriele Musco Date: Thu, 31 Aug 2023 05:08:40 +0000 Subject: [PATCH] fix: disable monado debug gui until the hang on quit issue is solved --- src/profiles/lighthouse.rs | 2 +- src/profiles/system_valve_index.rs | 2 +- src/profiles/valve_index.rs | 2 +- src/profiles/wivrn.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/profiles/lighthouse.rs b/src/profiles/lighthouse.rs index 21d725b..128548a 100644 --- a/src/profiles/lighthouse.rs +++ b/src/profiles/lighthouse.rs @@ -12,7 +12,7 @@ pub fn lighthouse_profile() -> Profile { environment.insert("XRT_JSON_LOG".into(), "1".into()); environment.insert("XRT_COMPOSITOR_SCALE_PERCENTAGE".into(), "140".into()); environment.insert("XRT_COMPOSITOR_COMPUTE".into(), "1".into()); - environment.insert("XRT_DEBUG_GUI".into(), "1".into()); + environment.insert("XRT_DEBUG_GUI".into(), "0".into()); environment.insert("XRT_CURATED_GUI".into(), "1".into()); environment.insert( "LD_LIBRARY_PATH".into(), diff --git a/src/profiles/system_valve_index.rs b/src/profiles/system_valve_index.rs index 8dd8066..accdccf 100644 --- a/src/profiles/system_valve_index.rs +++ b/src/profiles/system_valve_index.rs @@ -12,7 +12,7 @@ pub fn system_valve_index_profile() -> Profile { environment.insert("XRT_COMPOSITOR_COMPUTE".into(), "1".into()); environment.insert("SURVIVE_GLOBALSCENESOLVER".into(), "0".into()); environment.insert("SURVIVE_TIMECODE_OFFSET_MS".into(), "-6.94".into()); - environment.insert("XRT_DEBUG_GUI".into(), "1".into()); + environment.insert("XRT_DEBUG_GUI".into(), "0".into()); environment.insert("XRT_CURATED_GUI".into(), "1".into()); Profile { uuid: "system-valve-index-default".into(), diff --git a/src/profiles/valve_index.rs b/src/profiles/valve_index.rs index 7387e96..bbc191c 100644 --- a/src/profiles/valve_index.rs +++ b/src/profiles/valve_index.rs @@ -17,7 +17,7 @@ pub fn valve_index_profile() -> Profile { environment.insert("XRT_COMPOSITOR_COMPUTE".into(), "1".into()); environment.insert("SURVIVE_GLOBALSCENESOLVER".into(), "0".into()); environment.insert("SURVIVE_TIMECODE_OFFSET_MS".into(), "-6.94".into()); - environment.insert("XRT_DEBUG_GUI".into(), "1".into()); + environment.insert("XRT_DEBUG_GUI".into(), "0".into()); environment.insert("XRT_CURATED_GUI".into(), "1".into()); environment.insert( "LD_LIBRARY_PATH".into(), diff --git a/src/profiles/wivrn.rs b/src/profiles/wivrn.rs index 10f356f..9d28528 100644 --- a/src/profiles/wivrn.rs +++ b/src/profiles/wivrn.rs @@ -13,7 +13,7 @@ pub fn wivrn_profile() -> Profile { "LD_LIBRARY_PATH".into(), format!("{pfx}/lib:{pfx}/lib64", pfx = prefix), ); - environment.insert("XRT_DEBUG_GUI".into(), "1".into()); + environment.insert("XRT_DEBUG_GUI".into(), "0".into()); environment.insert("XRT_CURATED_GUI".into(), "1".into()); Profile { uuid: "wivrn-default".into(),