1 /* babl - dynamically extendable universal pixel conversion library.
2  * Copyright (C) 2005-2008, Øyvind Kolås and others.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 3 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General
15  * Public License along with this library; if not, see
16  * <https://www.gnu.org/licenses/>.
17  */
18 
19 #ifndef _BABL_REF_PIXELS_H
20 #define _BABL_REF_PIXELS_H
21 
22 int babl_get_num_path_test_pixels (void);
23 int babl_get_num_conversion_test_pixels (void);
24 int babl_get_num_format_test_pixels (void);
25 int babl_get_num_model_test_pixels (void);
26 int babl_get_num_type_test_pixels (void);
27 
28 const double *babl_get_path_test_pixels (void);
29 const double *babl_get_conversion_test_pixels (void);
30 const double *babl_get_format_test_pixels (void);
31 const double *babl_get_model_test_pixels (void);
32 const double *babl_get_type_test_pixels (void);
33 
34 #endif /* _BABL_REF_PIXELS_H */