fix: disable monado debug gui until the hang on quit issue is solved

This commit is contained in:
Gabriele Musco 2023-08-31 05:08:40 +00:00
parent 623a7cca95
commit 99313fbabf
4 changed files with 4 additions and 4 deletions

View file

@ -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(),

View file

@ -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(),

View file

@ -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(),

View file

@ -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(),