aboutsummaryrefslogtreecommitdiffstats
path: root/src/common.h
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/common.h
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/common.h')
-rw-r--r--src/common.h16
1 files changed, 8 insertions, 8 deletions
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
*