aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-07 21:45:56 +0100
committerMattias Andrée <m@maandree.se>2025-03-07 21:45:56 +0100
commit0537027c62bf60da936bd3d8f45dd42804445897 (patch)
tree9e393f493e33a94b69f757994e16e8f919566ca1 /src
parentUse libred to calculate the solar elevation (diff)
downloadredshift-ng-0537027c62bf60da936bd3d8f45dd42804445897.tar.gz
redshift-ng-0537027c62bf60da936bd3d8f45dd42804445897.tar.bz2
redshift-ng-0537027c62bf60da936bd3d8f45dd42804445897.tar.xz
Update LIST_RAMPS_STOP_VALUE_TYPES macro to reflect eariler changes in colorramp.c
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src')
-rw-r--r--src/colorramp.c2
-rw-r--r--src/common.h16
-rw-r--r--src/gamma-coopgamma.c12
3 files changed, 15 insertions, 15 deletions
diff --git a/src/colorramp.c b/src/colorramp.c
index 5cdf05f..ac197a1 100644
--- a/src/colorramp.c
+++ b/src/colorramp.c
@@ -25,7 +25,7 @@
#endif
-#define X(SUFFIX, TYPE, MAX, TRUE_MAX, DEPTH)\
+#define X(SUFFIX, TYPE, MAX, DEPTH)\
/**
* Fill a gamma ramp
*
diff --git a/src/common.h b/src/common.h
index 98384cc..7baedae 100644
--- a/src/common.h
+++ b/src/common.h
@@ -235,14 +235,14 @@ struct location_provider {
#define LIST_RAMPS_STOP_VALUE_TYPES(X, D)\
- X(u8, uint8_t, UINT8_MAX + 1ULL, UINT8_MAX, 8) D\
- X(u16, uint16_t, UINT16_MAX + 1ULL, UINT16_MAX, 16) D\
- X(u32, uint32_t, UINT32_MAX + 1ULL, UINT32_MAX, 32) D\
- X(u64, uint64_t, UINT64_MAX, UINT64_MAX, 64) D\
- X(float, float, 1, 1, -1) D\
- X(double, double, 1, 1, -2)
-
-#define X(SUFFIX, TYPE, MAX, TRUE_MAX, DEPTH)\
+ X(u8, uint8_t, UINT8_MAX, 8) D\
+ X(u16, uint16_t, UINT16_MAX, 16) D\
+ X(u32, uint32_t, UINT32_MAX, 32) D\
+ X(u64, uint64_t, UINT64_MAX, 64) D\
+ X(float, float, 1, -1) D\
+ X(double, double, 1, -2)
+
+#define X(SUFFIX, TYPE, MAX, DEPTH)\
/**
* Fill the gamma ramps
*
diff --git a/src/gamma-coopgamma.c b/src/gamma-coopgamma.c
index 0dd47c5..e108e86 100644
--- a/src/gamma-coopgamma.c
+++ b/src/gamma-coopgamma.c
@@ -268,7 +268,7 @@ coopgamma_start(struct gamma_state *state, enum program_mode mode)
/* Get total size of the ramps */
switch (info.depth) {
-#define X(SUFFIX, TYPE, MAX, TRUE_MAX, DEPTH)\
+#define X(SUFFIX, TYPE, MAX, DEPTH)\
case DEPTH:\
crtc->rampsize = sizeof(TYPE);\
break
@@ -299,7 +299,7 @@ coopgamma_start(struct gamma_state *state, enum program_mode mode)
#define float f
#define double d
switch (info.depth) {
-#define X(SUFFIX, TYPE, MAX, TRUE_MAX, DEPTH)\
+#define X(SUFFIX, TYPE, MAX, DEPTH)\
case DEPTH:\
r = libcoopgamma_ramps_initialise(&crtc->filter.ramps.SUFFIX);\
if (r < 0) {\
@@ -314,17 +314,17 @@ coopgamma_start(struct gamma_state *state, enum program_mode mode)
for (j = 0; j < crtc->plain_ramps.SUFFIX.red_size; j++) {\
d = j;\
d /= crtc->plain_ramps.SUFFIX.red_size;\
- crtc->plain_ramps.SUFFIX.red[j] = d * TRUE_MAX;\
+ crtc->plain_ramps.SUFFIX.red[j] = d * (MAX);\
}\
for (j = 0; j < crtc->plain_ramps.SUFFIX.green_size; j++) {\
d = j;\
d /= crtc->plain_ramps.SUFFIX.green_size;\
- crtc->plain_ramps.SUFFIX.green[j] = d * TRUE_MAX;\
+ crtc->plain_ramps.SUFFIX.green[j] = d * (MAX);\
}\
for (j = 0; j < crtc->plain_ramps.SUFFIX.blue_size; j++) {\
d = j;\
d /= crtc->plain_ramps.SUFFIX.blue_size;\
- crtc->plain_ramps.SUFFIX.blue[j] = d * TRUE_MAX;\
+ crtc->plain_ramps.SUFFIX.blue[j] = d * (MAX);\
}\
break
LIST_RAMPS_STOP_VALUE_TYPES(X, ;);
@@ -495,7 +495,7 @@ coopgamma_set_temperature(struct gamma_state *state, const struct color_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, TRUE_MAX, DEPTH)\
+#define X(SUFFIX, TYPE, MAX, DEPTH)\
case DEPTH:\
colorramp_fill_##SUFFIX((void *)(filter->ramps.u8.red),\
(void *)(filter->ramps.u8.green),\