diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-23 13:21:19 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-23 14:16:10 +0100 |
commit | 86433cea917715559d496ad0561d6b10bc89d7e5 (patch) | |
tree | 0216fd2d2d37c094d2c97584301f3434d5a4677b /src/gamma-coopgamma.c | |
parent | Update todo list (diff) | |
download | redshift-ng-86433cea917715559d496ad0561d6b10bc89d7e5.tar.gz redshift-ng-86433cea917715559d496ad0561d6b10bc89d7e5.tar.bz2 redshift-ng-86433cea917715559d496ad0561d6b10bc89d7e5.tar.xz |
Rewrite gamma-randr.c and gamma-vidmode.c to use libgamma
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/gamma-coopgamma.c')
-rw-r--r-- | src/gamma-coopgamma.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gamma-coopgamma.c b/src/gamma-coopgamma.c index 5343e08..7a33746 100644 --- a/src/gamma-coopgamma.c +++ b/src/gamma-coopgamma.c @@ -278,7 +278,7 @@ coopgamma_start(struct gamma_state *state) /* Get total size of the ramps */ switch (info.depth) { -#define X(SUFFIX, TYPE, MAX, DEPTH)\ +#define X(SUFFIX, RAMPS, TYPE, MAX, DEPTH)\ case DEPTH:\ crtc->rampsize = sizeof(TYPE);\ break @@ -310,7 +310,7 @@ coopgamma_start(struct gamma_state *state) #define float f #define double d switch (info.depth) { -#define X(SUFFIX, TYPE, MAX, DEPTH)\ +#define X(SUFFIX, RAMPS, TYPE, MAX, DEPTH)\ case DEPTH:\ r = libcoopgamma_ramps_initialise(&crtc->filter.ramps.SUFFIX);\ if (r < 0) {\ @@ -505,7 +505,7 @@ coopgamma_apply(struct gamma_state *state, const struct colour_setting *setting, /* Otherwise, create calculate the ramps */ memcpy(filter->ramps.u8.red, state->crtcs[i].plain_ramps.u8.red, state->crtcs[i].rampsize); switch (filter->depth) { -#define X(SUFFIX, TYPE, MAX, DEPTH)\ +#define X(SUFFIX, RAMPS, TYPE, MAX, DEPTH)\ case DEPTH:\ fill_ramps_##SUFFIX((void *)(filter->ramps.u8.red),\ (void *)(filter->ramps.u8.green),\ |