diff options
| author | Mattias Andrée <maandree@kth.se> | 2023-01-25 22:59:01 +0100 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2023-01-25 22:59:01 +0100 |
| commit | cd1558586a3ea5ac019b39831a135c2d488e405b (patch) | |
| tree | b73e7dfcfb107e850e536025f2c45223e0c8d6f6 /libglitter_get_colour_space_conversion_matrix_float.c | |
| parent | Improve README (diff) | |
| download | libglitter-cd1558586a3ea5ac019b39831a135c2d488e405b.tar.gz libglitter-cd1558586a3ea5ac019b39831a135c2d488e405b.tar.bz2 libglitter-cd1558586a3ea5ac019b39831a135c2d488e405b.tar.xz | |
Add man pages + some minor fixes
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libglitter_get_colour_space_conversion_matrix_float.c')
| -rw-r--r-- | libglitter_get_colour_space_conversion_matrix_float.c | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/libglitter_get_colour_space_conversion_matrix_float.c b/libglitter_get_colour_space_conversion_matrix_float.c deleted file mode 100644 index 6f71baf..0000000 --- a/libglitter_get_colour_space_conversion_matrix_float.c +++ /dev/null @@ -1,39 +0,0 @@ -/* See LICENSE file for copyright and license details. */ -#include "common.h" -#ifndef TEST - - -void -libglitter_get_colour_space_conversion_matrix_float(float matrix[3][3], float c1x, float c1y, - float c2x, float c2y, float c3x, float c3y, - float white_x, float white_y, float white_Y, int xyz) -{ - double double_matrix[3][3]; - libglitter_get_colour_space_conversion_matrix_double(double_matrix, - (double)c1x, (double)c1y, - (double)c2x, (double)c2y, - (double)c3x, (double)c3y, - (double)white_x, (double)white_y, (double)white_Y, xyz); - matrix[0][0] = (float)double_matrix[0][0]; - matrix[0][1] = (float)double_matrix[0][1]; - matrix[0][2] = (float)double_matrix[0][2]; - matrix[1][0] = (float)double_matrix[1][0]; - matrix[1][1] = (float)double_matrix[1][1]; - matrix[1][2] = (float)double_matrix[1][2]; - matrix[2][0] = (float)double_matrix[2][0]; - matrix[2][1] = (float)double_matrix[2][1]; - matrix[2][2] = (float)double_matrix[2][2]; -} - - -#else - - -int -main(void) -{ - return 0; /* TODO add test */ -} - - -#endif |
