aboutsummaryrefslogtreecommitdiffstats
path: root/TODO
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2017-06-06 13:55:17 +0200
committerMattias Andrée <maandree@kth.se>2017-06-06 13:59:36 +0200
commite047ec28ef55bc5a2bb8b1790201e51d02eb5a12 (patch)
tree28f7dacb5d45dbe7aa252f53a18187208fc6464a /TODO
parentPrepare for release (diff)
downloadlibcolour-e047ec28ef55bc5a2bb8b1790201e51d02eb5a12.tar.gz
libcolour-e047ec28ef55bc5a2bb8b1790201e51d02eb5a12.tar.bz2
libcolour-e047ec28ef55bc5a2bb8b1790201e51d02eb5a12.tar.xz
Remove a much of stuff, change license, and add support for float and long double
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'TODO')
-rw-r--r--TODO4
1 files changed, 3 insertions, 1 deletions
diff --git a/TODO b/TODO
index 9e66677..500b995 100644
--- a/TODO
+++ b/TODO
@@ -24,5 +24,7 @@ Support for generic subtractive colour spaces (3 channels and more)
GPU accelerated functions:
int libcolour_convert_en_masse_f(const libcolour_colour_t* from, const libcolour_colour_t* to, size_t n, ...)
Where `...` normally is `float* ch1, float* ch2, float* ch3`.
- int libcolour_convert_en_masse_d(const libcolour_colour_t* from, const libcolour_colour_t* to, size_t n, ...)
+ int libcolour_convert_en_masse_lf(const libcolour_colour_t* from, const libcolour_colour_t* to, size_t n, ...)
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`.