config: tweak.surface-bit-depth now defaults to 'auto'

When set to 'auto', use 10-bit surfaces if gamma-correct blending is
enabled, and 8-bit surfaces otherwise.

Note that we may still fallback to 8-bit surfaces (without disabling
gamma-correct blending) if the compositor does not support 10-bit
surfaces.

Closes #2082
This commit is contained in:
Daniel Eklöf 2025-05-01 08:34:49 +02:00
parent 7ced397089
commit 2a8948a3f3
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
13 changed files with 108 additions and 71 deletions

View file

@ -131,6 +131,12 @@ struct custom_regex {
struct config_spawn_template launch;
};
enum shm_bit_depth {
SHM_BITS_AUTO,
SHM_BITS_8,
SHM_BITS_10
};
struct config {
char *term;
char *shell;
@ -408,7 +414,7 @@ struct config {
bool box_drawing_solid_shades;
bool font_monospace_warn;
bool sixel;
enum { SHM_8_BIT, SHM_10_BIT } surface_bit_depth;
enum shm_bit_depth surface_bit_depth;
} tweak;
struct {