diff options
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | libglitter.h | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ Add colour space conversion +Add transfer function application function Add support for GPU-acceleration Add man pages Add tests diff --git a/libglitter.h b/libglitter.h index 4cd64bf..826ca16 100644 --- a/libglitter.h +++ b/libglitter.h @@ -207,7 +207,7 @@ void libglitter_desaturate_float(float **, size_t, size_t, size_t, size_t, size_ * @param c3y The CIE y value (as in CIE xyY) of the output's third primary colour * @param white_x The CIE x value (as in CIE xyY) of the output's white point * @param white_y The CIE y value (as in CIE xyY) of the output's white point - * @param white_Y The CIE Y value (as in CIE xyY) of the output's white point + * @param white_Y The CIE Y value (as in CIE xyY) of the output's white point, normally 1 * * `LIBGLITTER_ILLUMINANT_D65` can be input in place of * `white_x, white_y, white_Y` (it expands to three arguments) |