diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-23 18:14:28 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-23 18:14:28 +0100 |
commit | 9f5051694fa0a5bf7f7555514ae1c45254419c38 (patch) | |
tree | c8c8ce4667b1af75d6cd9a70ce16766957445b7b /src/common.h | |
parent | Restore support for preserve-gamma, with corrected order of application (diff) | |
download | redshift-ng-9f5051694fa0a5bf7f7555514ae1c45254419c38.tar.gz redshift-ng-9f5051694fa0a5bf7f7555514ae1c45254419c38.tar.bz2 redshift-ng-9f5051694fa0a5bf7f7555514ae1c45254419c38.tar.xz |
Add support for output selection by EDID
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h index e6e1339..1b352f2 100644 --- a/src/common.h +++ b/src/common.h @@ -1250,6 +1250,16 @@ int direct_set_partitions(GAMMA_STATE *state, const char *key, const char *value int direct_set_crtcs(GAMMA_STATE *state, const char *key, const char *value); /** + * Select EDIDs of outputs to apply adjustments to using direct gamma adjustments + * + * @param state State object for the adjustment method + * @param key Option to configure + * @param value Option value to set + * @return 0 on success, -1 on failure + */ +int direct_set_edids(GAMMA_STATE *state, const char *key, const char *value); + +/** * Finalise option-dependent initialisation and connections * for direct gamma adjustments * |