summaryrefslogtreecommitdiff
path: root/tests/hsva.c
blob: c2a224b5ef99d7b694297998f626835cd965964b (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* babl - dynamically extendable universal pixel conversion library.
 * Copyright (C) 2012, Maxime Nicco <maxime.nicco@gmail.fr>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General
 * Public License along with this library; if not, see
 * <https://www.gnu.org/licenses/>.
 */

 /*
 * Adding test fo hsva colorspace
 *
 * The test is at 0.001 precision
 */

#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include "babl.h"

#include "common.inc"


int
main (void)
{
  int OK = 1;

  float rgba[][4] = {{ 1.0,    1.0,    1.0,    1.0 },
                     { 0.2140, 0.2140, 0.2140, 1.0 },
                     { 0,      0,      0,      1.0 },
                     { 1,      0,      0,      1.0 },
                     { 0.5209, 0.5225, 0,      1.0 },
                     { 0,      0.2140, 0,      1.0 },
                     { 0.2140, 1,      1,      1.0 },
                     { 0.2140, 0.2140, 1,      1.0 },
                     { 0.5215, 0.0508, 0.5225, 1.0 },
                     { 0.3509, 0.3710, 0.0178, 1.0 },
                     { 0.0533, 0.0106, 0.8235, 1.0 },
                     { 0.0126, 0.4132, 0.0529, 1.0 },
                     { 0.8709, 0.5754, 0.0042, 1.0 },
                     { 0.4537, 0.0291, 0.7814, 1.0 },
                     { 0.8501, 0.1813, 0.0814, 1.0 },
                     { 0.9954, 0.9418, 0.2448, 1.0 },
                     { 0.0099, 0.5953, 0.3081, 1.0 },
                     { 0.0366, 0.0193, 0.3150, 1.0 }};

  float hsva[][4] = {{ 0.0,   0.0,   1.0,   1.0 },
                     { 0.0,   0.0,   0.5,   1.0 },
                     { 0.0,   0.0,   0.0,   1.0 },
                     { 0.0,   1.0,   1.0,   1.0 },
                     { 0.167, 1.0,   0.75,  1.0 },
                     { 0.333, 1.0,   0.5,   1.0 },
                     { 0.5,   0.5,   1.0,   1.0 },
                     { 0.667, 0.5,   1.0,   1.0 },
                     { 0.833, 0.666, 0.75,  1.0 },
                     { 0.172, 0.779, 0.643, 1.0 },
                     { 0.698, 0.887, 0.918, 1.0 },
                     { 0.375, 0.828, 0.675, 1.0 },
                     { 0.137, 0.944, 0.941, 1.0 },
                     { 0.788, 0.792, 0.897, 1.0 },
                     { 0.040, 0.661, 0.931, 1.0 },
                     { 0.158, 0.467, 0.998, 1.0 },
                     { 0.451, 0.875, 0.795, 1.0 },
                     { 0.690, 0.75,  0.597, 1.0 }};

  babl_init ();

  CHECK_CONV_FLOAT ("rgba to hsva ", float, 0.001,
                    babl_format ("RGBA float"),
                    babl_format ("HSVA float"),
                    rgba, hsva);

  CHECK_CONV_FLOAT ("hsva to rgba ", float, 0.001,
                    babl_format ("HSVA float"),
                    babl_format ("RGBA float"),
                    hsva, rgba);

  babl_exit ();

  return !OK;
}