diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2016-01-07 17:10:58 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2016-01-07 17:10:58 +0100 |
commit | 56e194f26addfb17b013729e9659b651943b8f83 (patch) | |
tree | d76a073931965e53ee72f132f77c1af65ecbdff5 /src | |
parent | typo + libclut_rgb_brightness + libclut_cie_brightness (diff) | |
download | libclut-56e194f26addfb17b013729e9659b651943b8f83.tar.gz libclut-56e194f26addfb17b013729e9659b651943b8f83.tar.bz2 libclut-56e194f26addfb17b013729e9659b651943b8f83.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/libclut.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libclut.h b/src/libclut.h index f705cb1..eba99d3 100644 --- a/src/libclut.h +++ b/src/libclut.h @@ -194,11 +194,11 @@ * structures from libgamma can be used. * @param max The maximum value on each stop in the ramps. * @param type The data type used for each stop in the ramps. - * @param r The contrast parameter for the red curve. - * @param g The contrast parameter for the green curve. - * @param b The contrast parameter for the blue curve. + * @param r The brightness parameter for the red curve. + * @param g The brightness parameter for the green curve. + * @param b The brightness parameter for the blue curve. */ -#define libclut_cie_contrast(ramp, max, type, r, g, b) \ +#define libclut_cie_brightness(ramp, max, type, r, g, b) \ do \ { \ size_t rn__ = (ramp)->red_size; \ |