aboutsummaryrefslogtreecommitdiffstats
path: root/src/cg-negative.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-12-18 18:48:48 +0100
committerMattias Andrée <maandree@kth.se>2016-12-18 18:59:43 +0100
commita651b51ed08f7fa04e25759b6e96a02d6dbbcb70 (patch)
tree3267ae0b0f39c31518feafeb6f0c58a4c2ab5256 /src/cg-negative.c
parentcg-query: print white point (diff)
downloadcg-tools-a651b51ed08f7fa04e25759b6e96a02d6dbbcb70.tar.gz
cg-tools-a651b51ed08f7fa04e25759b6e96a02d6dbbcb70.tar.bz2
cg-tools-a651b51ed08f7fa04e25759b6e96a02d6dbbcb70.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/cg-negative.c')
-rw-r--r--src/cg-negative.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cg-negative.c b/src/cg-negative.c
index 176d8db..28b87ea 100644
--- a/src/cg-negative.c
+++ b/src/cg-negative.c
@@ -55,12 +55,12 @@ static int xflag = 0;
static int rplus = 0;
/**
- * +r: do not touch the green channel
+ * +g: do not touch the green channel
*/
static int gplus = 0;
/**
- * +r: do not touch the blue channel
+ * +b: do not touch the blue channel
*/
static int bplus = 0;
@@ -166,7 +166,7 @@ static void fill_filter(libcoopgamma_filter_t* restrict filter)
{
#define X(CONST, MEMBER, MAX, TYPE)\
case CONST:\
- libclut_negative(&(filter->ramps.MEMBER), MAX, TYPE, !rplus, !gplus, !bplus);\
+ libclut_negative(&(filter->ramps.MEMBER), MAX, TYPE, !rplus, !gplus, !bplus);\
break;
LIST_DEPTHS
#undef X