config/descriptions: fix use_cpu_buffer (#13285)

This commit is contained in:
Murat65536 2026-02-20 17:57:08 +00:00 committed by GitHub
parent 9ea6d0e15f
commit 8b17a7404b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1702,9 +1702,9 @@ inline static const std::vector<SConfigOptionDescription> CONFIG_OPTIONS = {
},
SConfigOptionDescription{
.value = "cursor:use_cpu_buffer",
.description = "Makes HW cursors use a CPU buffer. Required on Nvidia to have HW cursors. Experimental",
.type = CONFIG_OPTION_BOOL,
.data = SConfigOptionDescription::SBoolData{false},
.description = "Makes HW cursors use a CPU buffer. Required on Nvidia to have HW cursors. 0 - off, 1 - on, 2 - auto (nvidia only)",
.type = CONFIG_OPTION_INT,
.data = SConfigOptionDescription::SRangeData{.value = 2, .min = 0, .max = 2},
},
SConfigOptionDescription{
.value = "cursor:sync_gsettings_theme",