1 /* babl - dynamically extendable universal pixel conversion library.
2  * Copyright (C) 2005 Øyvind Kolås
3  *               2013 Daniel Sabo
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 3 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, see
17  * <https://www.gnu.org/licenses/>.
18  */
19 
20 #include "babl-ref-pixels.h"
21 #include "babl-ref-pixels.inc"
22 
23 int
babl_get_num_path_test_pixels(void)24 babl_get_num_path_test_pixels (void)
25 {
26   return babl_num_path_test_pixels;
27 }
28 
29 int
babl_get_num_conversion_test_pixels(void)30 babl_get_num_conversion_test_pixels (void)
31 {
32   return babl_num_conversion_test_pixels;
33 }
34 
35 int
babl_get_num_format_test_pixels(void)36 babl_get_num_format_test_pixels (void)
37 {
38   return babl_num_format_test_pixels;
39 }
40 
41 int
babl_get_num_model_test_pixels(void)42 babl_get_num_model_test_pixels (void)
43 {
44   return babl_num_model_test_pixels;
45 }
46 
47 int
babl_get_num_type_test_pixels(void)48 babl_get_num_type_test_pixels (void)
49 {
50   return babl_num_type_test_pixels;
51 }
52 
53 const double *
babl_get_path_test_pixels(void)54 babl_get_path_test_pixels (void)
55 {
56   return babl_path_test_pixels;
57 }
58 
59 const double *
babl_get_conversion_test_pixels(void)60 babl_get_conversion_test_pixels (void)
61 {
62   return babl_conversion_test_pixels;
63 }
64 
65 const double *
babl_get_format_test_pixels(void)66 babl_get_format_test_pixels (void)
67 {
68   return babl_format_test_pixels;
69 }
70 
71 const double *
babl_get_model_test_pixels(void)72 babl_get_model_test_pixels (void)
73 {
74   return babl_model_test_pixels;
75 }
76 
77 const double *
babl_get_type_test_pixels(void)78 babl_get_type_test_pixels (void)
79 {
80   return babl_type_test_pixels;
81 }
82