mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-04 06:01:56 -07:00
config: disable new_render_scheduling by default
This commit is contained in:
@@ -1492,7 +1492,7 @@ inline static const std::vector<SConfigOptionDescription> CONFIG_OPTIONS = {
|
|||||||
.value = "render:new_render_scheduling",
|
.value = "render:new_render_scheduling",
|
||||||
.description = "enable new render scheduling, which should improve FPS on underpowered devices. This does not add latency when your PC can keep up.",
|
.description = "enable new render scheduling, which should improve FPS on underpowered devices. This does not add latency when your PC can keep up.",
|
||||||
.type = CONFIG_OPTION_BOOL,
|
.type = CONFIG_OPTION_BOOL,
|
||||||
.data = SConfigOptionDescription::SBoolData{true},
|
.data = SConfigOptionDescription::SBoolData{false},
|
||||||
},
|
},
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -749,7 +749,7 @@ CConfigManager::CConfigManager() {
|
|||||||
registerConfigVar("render:cm_enabled", Hyprlang::INT{1});
|
registerConfigVar("render:cm_enabled", Hyprlang::INT{1});
|
||||||
registerConfigVar("render:send_content_type", Hyprlang::INT{1});
|
registerConfigVar("render:send_content_type", Hyprlang::INT{1});
|
||||||
registerConfigVar("render:cm_auto_hdr", Hyprlang::INT{1});
|
registerConfigVar("render:cm_auto_hdr", Hyprlang::INT{1});
|
||||||
registerConfigVar("render:new_render_scheduling", Hyprlang::INT{1});
|
registerConfigVar("render:new_render_scheduling", Hyprlang::INT{0});
|
||||||
|
|
||||||
registerConfigVar("ecosystem:no_update_news", Hyprlang::INT{0});
|
registerConfigVar("ecosystem:no_update_news", Hyprlang::INT{0});
|
||||||
registerConfigVar("ecosystem:no_donation_nag", Hyprlang::INT{0});
|
registerConfigVar("ecosystem:no_donation_nag", Hyprlang::INT{0});
|
||||||
|
Reference in New Issue
Block a user