aboutsummaryrefslogtreecommitdiffstats
path: root/libglitter_get_colour_space_conversion_matrix_float.c
blob: 6e215c97cd4acb6b85e5e5ee3e1ec8274d0ffc61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* See LICENSE file for copyright and license details. */
#include "common.h"


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];
}