From d19ce39e511bb2073764be600d4d229118551f8a Mon Sep 17 00:00:00 2001 From: rustdesk Date: Thu, 13 Aug 2026 09:53:50 +0800 Subject: [PATCH] add texture-render-health internal option key Written by the texture-render watchdog / startup probe in the main repo; a failed record forces texture rendering off until it is cleared (probe pass or an explicit toggle of use-texture-render). Co-Authored-By: Claude Fable 5 --- src/config.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config.rs b/src/config.rs index 707bbe0f7..396d7371c 100644 --- a/src/config.rs +++ b/src/config.rs @@ -2889,6 +2889,9 @@ pub mod keys { pub const OPTION_ENABLE_OPEN_NEW_CONNECTIONS_IN_TABS: &str = "enable-open-new-connections-in-tabs"; pub const OPTION_TEXTURE_RENDER: &str = "use-texture-render"; + // Internal health record written by the texture-render watchdog/probe; + // "failed-*" flips the texture-render default to opt-in on this machine. + pub const OPTION_TEXTURE_RENDER_HEALTH: &str = "texture-render-health"; pub const OPTION_ALLOW_D3D_RENDER: &str = "allow-d3d-render"; pub const OPTION_ENABLE_CHECK_UPDATE: &str = "enable-check-update"; pub const OPTION_ALLOW_AUTO_UPDATE: &str = "allow-auto-update";