mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	android: settings: Disable force_max_clock by default.
This commit is contained in:
		@@ -26,7 +26,7 @@ enum class IntSetting(
 | 
			
		||||
    RENDERER_FORCE_MAX_CLOCK(
 | 
			
		||||
        "force_max_clock",
 | 
			
		||||
        Settings.SECTION_RENDERER,
 | 
			
		||||
        1
 | 
			
		||||
        0
 | 
			
		||||
    ),
 | 
			
		||||
    RENDERER_ASYNCHRONOUS_SHADERS(
 | 
			
		||||
        "use_asynchronous_shaders",
 | 
			
		||||
 
 | 
			
		||||
@@ -235,13 +235,13 @@ void Config::ReadValues() {
 | 
			
		||||
    Settings::values.async_presentation =
 | 
			
		||||
        config->GetBoolean("Renderer", "async_presentation", true);
 | 
			
		||||
 | 
			
		||||
    // Enable force_max_clock by default on Android
 | 
			
		||||
    // Disable force_max_clock by default on Android
 | 
			
		||||
    Settings::values.renderer_force_max_clock =
 | 
			
		||||
        config->GetBoolean("Renderer", "force_max_clock", true);
 | 
			
		||||
        config->GetBoolean("Renderer", "force_max_clock", false);
 | 
			
		||||
 | 
			
		||||
    // Disable use_reactive_flushing by default on Android
 | 
			
		||||
    Settings::values.use_reactive_flushing =
 | 
			
		||||
            config->GetBoolean("Renderer", "use_reactive_flushing", false);
 | 
			
		||||
        config->GetBoolean("Renderer", "use_reactive_flushing", false);
 | 
			
		||||
 | 
			
		||||
    // Audio
 | 
			
		||||
    ReadSetting("Audio", Settings::values.sink_id);
 | 
			
		||||
 
 | 
			
		||||
@@ -251,7 +251,7 @@ backend =
 | 
			
		||||
# 0: Off, 1 (default): On
 | 
			
		||||
async_presentation =
 | 
			
		||||
 | 
			
		||||
# Enable graphics API debugging mode.
 | 
			
		||||
# Forces the GPU to run at the maximum possible clocks (thermal constraints will still be applied).
 | 
			
		||||
# 0 (default): Disabled, 1: Enabled
 | 
			
		||||
force_max_clock =
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user