test version of startmenu root with big icons
[reactos.git] / reactos / lib / mesa32 / src / main / colormac.h
1 /*
2 * Mesa 3-D graphics library
3 * Version: 6.1
4 *
5 * Copyright (C) 1999-2004 Brian Paul All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25
26 /**
27 * \file colormac.h
28 * Color-related macros
29 */
30
31
32 #ifndef COLORMAC_H
33 #define COLORMAC_H
34
35
36 #include "imports.h"
37 #include "config.h"
38 #include "macros.h"
39
40
41 /** \def BYTE_TO_CHAN
42 * Convert from GLbyte to GLchan */
43
44 /** \def UBYTE_TO_CHAN
45 * Convert from GLubyte to GLchan */
46
47 /** \def SHORT_TO_CHAN
48 * Convert from GLshort to GLchan */
49
50 /** \def USHORT_TO_CHAN
51 * Convert from GLushort to GLchan */
52
53 /** \def INT_TO_CHAN
54 * Convert from GLint to GLchan */
55
56 /** \def UINT_TO_CHAN
57 * Convert from GLuint to GLchan */
58
59 /** \def CHAN_TO_UBYTE
60 * Convert from GLchan to GLubyte */
61
62 /** \def CHAN_TO_FLOAT
63 * Convert from GLchan to GLfloat */
64
65 /** \def CLAMPED_FLOAT_TO_CHAN
66 * Convert from GLclampf to GLchan */
67
68 /** \def UNCLAMPED_FLOAT_TO_CHAN
69 * Convert from GLfloat to GLchan */
70
71 /** \def COPY_CHAN4
72 * Copy a GLchan[4] array */
73
74 /** \def CHAN_PRODUCT
75 * Scaled product (usually approximated) between two GLchan arguments */
76
77 #if CHAN_BITS == 8
78
79 #define BYTE_TO_CHAN(b) ((b) < 0 ? 0 : (GLchan) (b))
80 #define UBYTE_TO_CHAN(b) (b)
81 #define SHORT_TO_CHAN(s) ((s) < 0 ? 0 : (GLchan) ((s) >> 7))
82 #define USHORT_TO_CHAN(s) ((GLchan) ((s) >> 8))
83 #define INT_TO_CHAN(i) ((i) < 0 ? 0 : (GLchan) ((i) >> 23))
84 #define UINT_TO_CHAN(i) ((GLchan) ((i) >> 24))
85
86 #define CHAN_TO_UBYTE(c) (c)
87 #define CHAN_TO_FLOAT(c) UBYTE_TO_FLOAT(c)
88
89 #define CLAMPED_FLOAT_TO_CHAN(c, f) CLAMPED_FLOAT_TO_UBYTE(c, f)
90 #define UNCLAMPED_FLOAT_TO_CHAN(c, f) UNCLAMPED_FLOAT_TO_UBYTE(c, f)
91
92 #define COPY_CHAN4(DST, SRC) COPY_4UBV(DST, SRC)
93
94 #define CHAN_PRODUCT(a, b) ((GLubyte) (((GLint)(a) * ((GLint)(b) + 1)) >> 8))
95
96 #elif CHAN_BITS == 16
97
98 #define BYTE_TO_CHAN(b) ((b) < 0 ? 0 : (((GLchan) (b)) * 516))
99 #define UBYTE_TO_CHAN(b) ((((GLchan) (b)) << 8) | ((GLchan) (b)))
100 #define SHORT_TO_CHAN(s) ((s) < 0 ? 0 : (GLchan) (s))
101 #define USHORT_TO_CHAN(s) (s)
102 #define INT_TO_CHAN(i) ((i) < 0 ? 0 : (GLchan) ((i) >> 15))
103 #define UINT_TO_CHAN(i) ((GLchan) ((i) >> 16))
104
105 #define CHAN_TO_UBYTE(c) ((c) >> 8)
106 #define CHAN_TO_FLOAT(c) ((GLfloat) ((c) * (1.0 / CHAN_MAXF)))
107
108 #define CLAMPED_FLOAT_TO_CHAN(c, f) CLAMPED_FLOAT_TO_USHORT(c, f)
109 #define UNCLAMPED_FLOAT_TO_CHAN(c, f) UNCLAMPED_FLOAT_TO_USHORT(c, f)
110
111 #define COPY_CHAN4(DST, SRC) COPY_4V(DST, SRC)
112
113 #define CHAN_PRODUCT(a, b) ((GLchan) ((((GLuint) (a)) * ((GLuint) (b))) / 65535))
114
115 #elif CHAN_BITS == 32
116
117 /* XXX floating-point color channels not fully thought-out */
118 #define BYTE_TO_CHAN(b) ((GLfloat) ((b) * (1.0F / 127.0F)))
119 #define UBYTE_TO_CHAN(b) ((GLfloat) ((b) * (1.0F / 255.0F)))
120 #define SHORT_TO_CHAN(s) ((GLfloat) ((s) * (1.0F / 32767.0F)))
121 #define USHORT_TO_CHAN(s) ((GLfloat) ((s) * (1.0F / 65535.0F)))
122 #define INT_TO_CHAN(i) ((GLfloat) ((i) * (1.0F / 2147483647.0F)))
123 #define UINT_TO_CHAN(i) ((GLfloat) ((i) * (1.0F / 4294967295.0F)))
124
125 #define CHAN_TO_UBYTE(c) FLOAT_TO_UBYTE(c)
126 #define CHAN_TO_FLOAT(c) (c)
127
128 #define CLAMPED_FLOAT_TO_CHAN(c, f) c = (f)
129 #define UNCLAMPED_FLOAT_TO_CHAN(c, f) c = (f)
130
131 #define COPY_CHAN4(DST, SRC) COPY_4V(DST, SRC)
132
133 #define CHAN_PRODUCT(a, b) ((a) * (b))
134
135 #else
136
137 #error unexpected CHAN_BITS size
138
139 #endif
140
141
142 /**
143 * Convert 3 channels at once.
144 *
145 * \param dst pointer to destination GLchan[3] array.
146 * \param f pointer to source GLfloat[3] array.
147 *
148 * \sa #UNCLAMPED_FLOAT_TO_CHAN.
149 */
150 #define UNCLAMPED_FLOAT_TO_RGB_CHAN(dst, f) \
151 do { \
152 UNCLAMPED_FLOAT_TO_CHAN(dst[0], f[0]); \
153 UNCLAMPED_FLOAT_TO_CHAN(dst[1], f[1]); \
154 UNCLAMPED_FLOAT_TO_CHAN(dst[2], f[2]); \
155 } while (0)
156
157
158 /**
159 * Convert 4 channels at once.
160 *
161 * \param dst pointer to destination GLchan[4] array.
162 * \param f pointer to source GLfloat[4] array.
163 *
164 * \sa #UNCLAMPED_FLOAT_TO_CHAN.
165 */
166 #define UNCLAMPED_FLOAT_TO_RGBA_CHAN(dst, f) \
167 do { \
168 UNCLAMPED_FLOAT_TO_CHAN(dst[0], f[0]); \
169 UNCLAMPED_FLOAT_TO_CHAN(dst[1], f[1]); \
170 UNCLAMPED_FLOAT_TO_CHAN(dst[2], f[2]); \
171 UNCLAMPED_FLOAT_TO_CHAN(dst[3], f[3]); \
172 } while (0)
173
174
175
176 /**
177 * \name Generic color packing macros. All inputs should be GLubytes.
178 *
179 * \todo We may move these into texstore.h at some point.
180 */
181 /*@{*/
182
183 #define PACK_COLOR_8888( R, G, B, A ) \
184 (((R) << 24) | ((G) << 16) | ((B) << 8) | (A))
185
186 #define PACK_COLOR_8888_REV( R, G, B, A ) \
187 (((A) << 24) | ((B) << 16) | ((G) << 8) | (R))
188
189 #define PACK_COLOR_888( R, G, B ) \
190 (((R) << 16) | ((G) << 8) | (B))
191
192 #define PACK_COLOR_565( R, G, B ) \
193 ((((R) & 0xf8) << 8) | (((G) & 0xfc) << 3) | (((B) & 0xf8) >> 3))
194
195 #define PACK_COLOR_565_REV( R, G, B ) \
196 (((R) & 0xf8) | ((G) & 0xe0) >> 5 | (((G) & 0x1c) << 11) | (((B) & 0xf8) << 5))
197
198 #define PACK_COLOR_1555( A, B, G, R ) \
199 ((((B) & 0xf8) << 7) | (((G) & 0xf8) << 2) | (((R) & 0xf8) >> 3) | \
200 ((A) ? 0x8000 : 0))
201
202 #define PACK_COLOR_1555_REV( A, B, G, R ) \
203 ((((B) & 0xf8) >> 1) | (((G) & 0xc0) >> 6) | (((G) & 0x38) << 10) | (((R) & 0xf8) << 5) | \
204 ((A) ? 0x80 : 0))
205
206 #define PACK_COLOR_4444( R, G, B, A ) \
207 ((((R) & 0xf0) << 8) | (((G) & 0xf0) << 4) | ((B) & 0xf0) | ((A) >> 4))
208
209 #define PACK_COLOR_4444_REV( R, G, B, A ) \
210 ((((B) & 0xf0) << 8) | (((A) & 0xf0) << 4) | ((R) & 0xf0) | ((G) >> 4))
211
212 #define PACK_COLOR_88( L, A ) \
213 (((L) << 8) | (A))
214
215 #define PACK_COLOR_88_REV( L, A ) \
216 (((A) << 8) | (L))
217
218 #define PACK_COLOR_332( R, G, B ) \
219 (((R) & 0xe0) | (((G) & 0xe0) >> 3) | (((B) & 0xc0) >> 6))
220
221 #define PACK_COLOR_233( B, G, R ) \
222 (((B) & 0xc0) | (((G) & 0xe0) >> 2) | (((R) & 0xe0) >> 5))
223
224 /*@}*/
225
226
227 #endif /* COLORMAC_H */