aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2017-06-06 14:15:49 +0200
committerMattias Andrée <maandree@kth.se>2017-06-06 14:15:49 +0200
commit7de9477cb9722ebd099fc3c2f6d1c61ea8b31809 (patch)
tree5d41f9d3eff81b707993810f3a0ad3a66d736065
parentMakefile: add install and uninstall (diff)
downloadlibcolour-7de9477cb9722ebd099fc3c2f6d1c61ea8b31809.tar.gz
libcolour-7de9477cb9722ebd099fc3c2f6d1c61ea8b31809.tar.bz2
libcolour-7de9477cb9722ebd099fc3c2f6d1c61ea8b31809.tar.xz
Update todo
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--TODO14
1 files changed, 14 insertions, 0 deletions
diff --git a/TODO b/TODO
index 500b995..baa0cac 100644
--- a/TODO
+++ b/TODO
@@ -28,3 +28,17 @@ GPU accelerated functions:
Where `...` normally is `double* ch1, double* ch2, double* ch3`.
int libcolour_convert_en_masse_llf(const libcolour_colour_t* from, const libcolour_colour_t* to, size_t n, ...)
Where `...` normally is `long double* ch1, long double* ch2, long double* ch3`.
+
+ int libcolour_convert_en_masse_3f(const libcolour_colour_t* from, const libcolour_colour_t* to, size_t n, ...)
+ Where `...` normally is `float* ch123`.
+ int libcolour_convert_en_masse_3lf(const libcolour_colour_t* from, const libcolour_colour_t* to, size_t n, ...)
+ Where `...` normally is `double* ch123`.
+ int libcolour_convert_en_masse_3llf(const libcolour_colour_t* from, const libcolour_colour_t* to, size_t n, ...)
+ Where `...` normally is `long double* ch123`.
+
+ int libcolour_convert_en_masse_4f(const libcolour_colour_t* from, const libcolour_colour_t* to, size_t n, ...)
+ Where `...` normally is `float* ch123a`.
+ int libcolour_convert_en_masse_4lf(const libcolour_colour_t* from, const libcolour_colour_t* to, size_t n, ...)
+ Where `...` normally is `double* ch123a`.
+ int libcolour_convert_en_masse_4llf(const libcolour_colour_t* from, const libcolour_colour_t* to, size_t n, ...)
+ Where `...` normally is `long double* ch123a`.