aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TODO17
-rw-r--r--src/libcolour.h4
2 files changed, 17 insertions, 4 deletions
diff --git a/TODO b/TODO
new file mode 100644
index 0000000..f479100
--- /dev/null
+++ b/TODO
@@ -0,0 +1,17 @@
+Colour spaces:
+ LMS
+ L'M'S'
+ ICtCp
+ YCbCr
+ TSL
+ Y'UV
+ Hunter 1948 color space
+
+Support for generic additive colour spaces (3 channels and more)
+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, ...)
+ Where `...` normally is `double* ch1, double* ch2, double* ch3`.
diff --git a/src/libcolour.h b/src/libcolour.h
index b45b1a4..8efe779 100644
--- a/src/libcolour.h
+++ b/src/libcolour.h
@@ -261,10 +261,6 @@ typedef struct libcolour_rgb {
enum libcolour_rgb_colour_space colour_space;
} libcolour_rgb_t;
-/* TODO LMS, L'M'S', ICtCp, YCbCr, TSL, Y'UV, Hunter 1948 color space */
-/* TODO generic additive colour space */
-/* TODO generic subtractive colour space */
-
typedef union libcolour_colour {
enum libcolour_model model;