-
Notifications
You must be signed in to change notification settings - Fork 4
/
color.h
91 lines (74 loc) · 2.63 KB
/
color.h
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
/*
DDS GIMP plugin
Copyright (C) 2004-2012 Shawn Kirst <[email protected]>,
with parts (C) 2003 Arne Reuter <[email protected]> where specified.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This program 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
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING. If not, write to
the Free Software Foundation, 51 Franklin Street, Fifth Floor
Boston, MA 02110-1301, USA.
*/
#ifndef COLOR_H
#define COLOR_H
#include "imath.h"
/* sRGB encoding/decoding */
int linear_to_sRGB(int c);
int sRGB_to_linear(int c);
/* YCoCg encoding */
static inline void RGB_to_YCoCg(unsigned char *dst, int r, int g, int b)
{
int y = ((r + (g << 1) + b) + 2) >> 2;
int co = ((((r << 1) - (b << 1)) + 2) >> 2) + 128;
int cg = (((-r + (g << 1) - b) + 2) >> 2) + 128;
dst[0] = 255;
dst[1] = (cg > 255 ? 255 : (cg < 0 ? 0 : cg));
dst[2] = (co > 255 ? 255 : (co < 0 ? 0 : co));
dst[3] = (y > 255 ? 255 : (y < 0 ? 0 : y));
}
/* other color conversions */
static inline int rgb_to_luminance(int r, int g, int b)
{
/* ITU-R BT.709 luma coefficents, scaled by 256 */
return(((r * 54 + g * 182 + b * 20) + 128) >> 8);
}
static inline unsigned short pack_r5g6b5(int r, int g, int b)
{
return((mul8bit(r, 31) << 11) |
(mul8bit(g, 63) << 5) |
(mul8bit(b, 31) ));
}
static inline unsigned short pack_rgba4(int r, int g, int b, int a)
{
return((mul8bit(a, 15) << 12) |
(mul8bit(r, 15) << 8) |
(mul8bit(g, 15) << 4) |
(mul8bit(b, 15) ));
}
static inline unsigned short pack_rgb5a1(int r, int g, int b, int a)
{
return((((a >> 7) & 0x01) << 15) |
(mul8bit(r, 31) << 10) |
(mul8bit(g, 31) << 5) |
(mul8bit(b, 31) ));
}
static inline unsigned char pack_r3g3b2(int r, int g, int b)
{
return((mul8bit(r, 7) << 5) |
(mul8bit(g, 7) << 2) |
(mul8bit(b, 3) ));
}
static inline unsigned int pack_rgb10a2(int r, int g, int b, int a)
{
return(((unsigned int)((a >> 6) & 0x003) << 30) |
((unsigned int)((r << 2) & 0x3ff) << 20) |
((unsigned int)((g << 2) & 0x3ff) << 10) |
((unsigned int)((b << 2) & 0x3ff) ));
}
#endif