Merge remote branch 'origin/master' into pipe-video
[mesa.git] / src / mesa / main / formats.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.7
4 *
5 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
6 * Copyright (c) 2008-2009 VMware, Inc.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26
27 #include "imports.h"
28 #include "formats.h"
29 #include "mfeatures.h"
30
31
32 /**
33 * Information about texture formats.
34 */
35 struct gl_format_info
36 {
37 gl_format Name;
38
39 /** text name for debugging */
40 const char *StrName;
41
42 /**
43 * Base format is one of GL_RGB, GL_RGBA, GL_ALPHA, GL_LUMINANCE,
44 * GL_LUMINANCE_ALPHA, GL_INTENSITY, GL_YCBCR_MESA, GL_COLOR_INDEX,
45 * GL_DEPTH_COMPONENT, GL_STENCIL_INDEX, GL_DEPTH_STENCIL.
46 */
47 GLenum BaseFormat;
48
49 /**
50 * Logical data type: one of GL_UNSIGNED_NORMALIZED, GL_SIGNED_NORMALED,
51 * GL_UNSIGNED_INT, GL_INT, GL_FLOAT.
52 */
53 GLenum DataType;
54
55 GLubyte RedBits;
56 GLubyte GreenBits;
57 GLubyte BlueBits;
58 GLubyte AlphaBits;
59 GLubyte LuminanceBits;
60 GLubyte IntensityBits;
61 GLubyte IndexBits;
62 GLubyte DepthBits;
63 GLubyte StencilBits;
64
65 /**
66 * To describe compressed formats. If not compressed, Width=Height=1.
67 */
68 GLubyte BlockWidth, BlockHeight;
69 GLubyte BytesPerBlock;
70 };
71
72
73 /**
74 * Info about each format.
75 * These must be in the same order as the MESA_FORMAT_* enums so that
76 * we can do lookups without searching.
77 */
78 static struct gl_format_info format_info[MESA_FORMAT_COUNT] =
79 {
80 {
81 MESA_FORMAT_NONE, /* Name */
82 "MESA_FORMAT_NONE", /* StrName */
83 GL_NONE, /* BaseFormat */
84 GL_NONE, /* DataType */
85 0, 0, 0, 0, /* Red/Green/Blue/AlphaBits */
86 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
87 0, 0, 0 /* BlockWidth/Height,Bytes */
88 },
89 {
90 MESA_FORMAT_RGBA8888, /* Name */
91 "MESA_FORMAT_RGBA8888", /* StrName */
92 GL_RGBA, /* BaseFormat */
93 GL_UNSIGNED_NORMALIZED, /* DataType */
94 8, 8, 8, 8, /* Red/Green/Blue/AlphaBits */
95 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
96 1, 1, 4 /* BlockWidth/Height,Bytes */
97 },
98 {
99 MESA_FORMAT_RGBA8888_REV, /* Name */
100 "MESA_FORMAT_RGBA8888_REV", /* StrName */
101 GL_RGBA, /* BaseFormat */
102 GL_UNSIGNED_NORMALIZED, /* DataType */
103 8, 8, 8, 8, /* Red/Green/Blue/AlphaBits */
104 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
105 1, 1, 4 /* BlockWidth/Height,Bytes */
106 },
107 {
108 MESA_FORMAT_ARGB8888, /* Name */
109 "MESA_FORMAT_ARGB8888", /* StrName */
110 GL_RGBA, /* BaseFormat */
111 GL_UNSIGNED_NORMALIZED, /* DataType */
112 8, 8, 8, 8, /* Red/Green/Blue/AlphaBits */
113 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
114 1, 1, 4 /* BlockWidth/Height,Bytes */
115 },
116 {
117 MESA_FORMAT_ARGB8888_REV, /* Name */
118 "MESA_FORMAT_ARGB8888_REV", /* StrName */
119 GL_RGBA, /* BaseFormat */
120 GL_UNSIGNED_NORMALIZED, /* DataType */
121 8, 8, 8, 8, /* Red/Green/Blue/AlphaBits */
122 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
123 1, 1, 4 /* BlockWidth/Height,Bytes */
124 },
125 {
126 MESA_FORMAT_XRGB8888, /* Name */
127 "MESA_FORMAT_XRGB8888", /* StrName */
128 GL_RGB, /* BaseFormat */
129 GL_UNSIGNED_NORMALIZED, /* DataType */
130 8, 8, 8, 0, /* Red/Green/Blue/AlphaBits */
131 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
132 1, 1, 4 /* BlockWidth/Height,Bytes */
133 },
134 {
135 MESA_FORMAT_XRGB8888_REV, /* Name */
136 "MESA_FORMAT_XRGB8888_REV", /* StrName */
137 GL_RGB, /* BaseFormat */
138 GL_UNSIGNED_NORMALIZED, /* DataType */
139 8, 8, 8, 0, /* Red/Green/Blue/AlphaBits */
140 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
141 1, 1, 4 /* BlockWidth/Height,Bytes */
142 },
143 {
144 MESA_FORMAT_RGB888, /* Name */
145 "MESA_FORMAT_RGB888", /* StrName */
146 GL_RGB, /* BaseFormat */
147 GL_UNSIGNED_NORMALIZED, /* DataType */
148 8, 8, 8, 0, /* Red/Green/Blue/AlphaBits */
149 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
150 1, 1, 3 /* BlockWidth/Height,Bytes */
151 },
152 {
153 MESA_FORMAT_BGR888, /* Name */
154 "MESA_FORMAT_BGR888", /* StrName */
155 GL_RGB, /* BaseFormat */
156 GL_UNSIGNED_NORMALIZED, /* DataType */
157 8, 8, 8, 0, /* Red/Green/Blue/AlphaBits */
158 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
159 1, 1, 3 /* BlockWidth/Height,Bytes */
160 },
161 {
162 MESA_FORMAT_RGB565, /* Name */
163 "MESA_FORMAT_RGB565", /* StrName */
164 GL_RGB, /* BaseFormat */
165 GL_UNSIGNED_NORMALIZED, /* DataType */
166 5, 6, 5, 0, /* Red/Green/Blue/AlphaBits */
167 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
168 1, 1, 2 /* BlockWidth/Height,Bytes */
169 },
170 {
171 MESA_FORMAT_RGB565_REV, /* Name */
172 "MESA_FORMAT_RGB565_REV", /* StrName */
173 GL_RGB, /* BaseFormat */
174 GL_UNSIGNED_NORMALIZED, /* DataType */
175 5, 6, 5, 0, /* Red/Green/Blue/AlphaBits */
176 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
177 1, 1, 2 /* BlockWidth/Height,Bytes */
178 },
179 {
180 MESA_FORMAT_ARGB4444, /* Name */
181 "MESA_FORMAT_ARGB4444", /* StrName */
182 GL_RGBA, /* BaseFormat */
183 GL_UNSIGNED_NORMALIZED, /* DataType */
184 4, 4, 4, 4, /* Red/Green/Blue/AlphaBits */
185 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
186 1, 1, 2 /* BlockWidth/Height,Bytes */
187 },
188 {
189 MESA_FORMAT_ARGB4444_REV, /* Name */
190 "MESA_FORMAT_ARGB4444_REV", /* StrName */
191 GL_RGBA, /* BaseFormat */
192 GL_UNSIGNED_NORMALIZED, /* DataType */
193 4, 4, 4, 4, /* Red/Green/Blue/AlphaBits */
194 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
195 1, 1, 2 /* BlockWidth/Height,Bytes */
196 },
197 {
198 MESA_FORMAT_RGBA5551, /* Name */
199 "MESA_FORMAT_RGBA5551", /* StrName */
200 GL_RGBA, /* BaseFormat */
201 GL_UNSIGNED_NORMALIZED, /* DataType */
202 5, 5, 5, 1, /* Red/Green/Blue/AlphaBits */
203 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
204 1, 1, 2 /* BlockWidth/Height,Bytes */
205 },
206 {
207 MESA_FORMAT_ARGB1555, /* Name */
208 "MESA_FORMAT_ARGB1555", /* StrName */
209 GL_RGBA, /* BaseFormat */
210 GL_UNSIGNED_NORMALIZED, /* DataType */
211 5, 5, 5, 1, /* Red/Green/Blue/AlphaBits */
212 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
213 1, 1, 2 /* BlockWidth/Height,Bytes */
214 },
215 {
216 MESA_FORMAT_ARGB1555_REV, /* Name */
217 "MESA_FORMAT_ARGB1555_REV", /* StrName */
218 GL_RGBA, /* BaseFormat */
219 GL_UNSIGNED_NORMALIZED, /* DataType */
220 5, 5, 5, 1, /* Red/Green/Blue/AlphaBits */
221 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
222 1, 1, 2 /* BlockWidth/Height,Bytes */
223 },
224 {
225 MESA_FORMAT_AL88, /* Name */
226 "MESA_FORMAT_AL88", /* StrName */
227 GL_LUMINANCE_ALPHA, /* BaseFormat */
228 GL_UNSIGNED_NORMALIZED, /* DataType */
229 0, 0, 0, 8, /* Red/Green/Blue/AlphaBits */
230 8, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
231 1, 1, 2 /* BlockWidth/Height,Bytes */
232 },
233 {
234 MESA_FORMAT_AL88_REV, /* Name */
235 "MESA_FORMAT_AL88_REV", /* StrName */
236 GL_LUMINANCE_ALPHA, /* BaseFormat */
237 GL_UNSIGNED_NORMALIZED, /* DataType */
238 0, 0, 0, 8, /* Red/Green/Blue/AlphaBits */
239 8, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
240 1, 1, 2 /* BlockWidth/Height,Bytes */
241 },
242 {
243 MESA_FORMAT_AL1616, /* Name */
244 "MESA_FORMAT_AL1616", /* StrName */
245 GL_LUMINANCE_ALPHA, /* BaseFormat */
246 GL_UNSIGNED_NORMALIZED, /* DataType */
247 0, 0, 0, 16, /* Red/Green/Blue/AlphaBits */
248 16, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
249 1, 1, 4 /* BlockWidth/Height,Bytes */
250 },
251 {
252 MESA_FORMAT_AL1616_REV, /* Name */
253 "MESA_FORMAT_AL1616_REV", /* StrName */
254 GL_LUMINANCE_ALPHA, /* BaseFormat */
255 GL_UNSIGNED_NORMALIZED, /* DataType */
256 0, 0, 0, 16, /* Red/Green/Blue/AlphaBits */
257 16, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
258 1, 1, 4 /* BlockWidth/Height,Bytes */
259 },
260 {
261 MESA_FORMAT_RGB332, /* Name */
262 "MESA_FORMAT_RGB332", /* StrName */
263 GL_RGB, /* BaseFormat */
264 GL_UNSIGNED_NORMALIZED, /* DataType */
265 3, 3, 2, 0, /* Red/Green/Blue/AlphaBits */
266 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
267 1, 1, 1 /* BlockWidth/Height,Bytes */
268 },
269 {
270 MESA_FORMAT_A8, /* Name */
271 "MESA_FORMAT_A8", /* StrName */
272 GL_ALPHA, /* BaseFormat */
273 GL_UNSIGNED_NORMALIZED, /* DataType */
274 0, 0, 0, 8, /* Red/Green/Blue/AlphaBits */
275 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
276 1, 1, 1 /* BlockWidth/Height,Bytes */
277 },
278 {
279 MESA_FORMAT_L8, /* Name */
280 "MESA_FORMAT_L8", /* StrName */
281 GL_LUMINANCE, /* BaseFormat */
282 GL_UNSIGNED_NORMALIZED, /* DataType */
283 0, 0, 0, 0, /* Red/Green/Blue/AlphaBits */
284 8, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
285 1, 1, 1 /* BlockWidth/Height,Bytes */
286 },
287 {
288 MESA_FORMAT_I8, /* Name */
289 "MESA_FORMAT_I8", /* StrName */
290 GL_INTENSITY, /* BaseFormat */
291 GL_UNSIGNED_NORMALIZED, /* DataType */
292 0, 0, 0, 0, /* Red/Green/Blue/AlphaBits */
293 0, 8, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
294 1, 1, 1 /* BlockWidth/Height,Bytes */
295 },
296 {
297 MESA_FORMAT_CI8, /* Name */
298 "MESA_FORMAT_CI8", /* StrName */
299 GL_COLOR_INDEX, /* BaseFormat */
300 GL_UNSIGNED_INT, /* DataType */
301 0, 0, 0, 0, /* Red/Green/Blue/AlphaBits */
302 0, 0, 8, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
303 1, 1, 1 /* BlockWidth/Height,Bytes */
304 },
305 {
306 MESA_FORMAT_YCBCR, /* Name */
307 "MESA_FORMAT_YCBCR", /* StrName */
308 GL_YCBCR_MESA, /* BaseFormat */
309 GL_UNSIGNED_NORMALIZED, /* DataType */
310 0, 0, 0, 0, /* Red/Green/Blue/AlphaBits */
311 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
312 1, 1, 2 /* BlockWidth/Height,Bytes */
313 },
314 {
315 MESA_FORMAT_YCBCR_REV, /* Name */
316 "MESA_FORMAT_YCBCR_REV", /* StrName */
317 GL_YCBCR_MESA, /* BaseFormat */
318 GL_UNSIGNED_NORMALIZED, /* DataType */
319 0, 0, 0, 0, /* Red/Green/Blue/AlphaBits */
320 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
321 1, 1, 2 /* BlockWidth/Height,Bytes */
322 },
323 {
324 MESA_FORMAT_R8,
325 "MESA_FORMAT_R8",
326 GL_RED,
327 GL_UNSIGNED_NORMALIZED,
328 8, 0, 0, 0,
329 0, 0, 0, 0, 0,
330 1, 1, 1
331 },
332 {
333 MESA_FORMAT_RG88,
334 "MESA_FORMAT_RG88",
335 GL_RG,
336 GL_UNSIGNED_NORMALIZED,
337 8, 8, 0, 0,
338 0, 0, 0, 0, 0,
339 1, 1, 2
340 },
341 {
342 MESA_FORMAT_RG88_REV,
343 "MESA_FORMAT_RG88_REV",
344 GL_RG,
345 GL_UNSIGNED_NORMALIZED,
346 8, 8, 0, 0,
347 0, 0, 0, 0, 0,
348 1, 1, 2
349 },
350 {
351 MESA_FORMAT_R16,
352 "MESA_FORMAT_R16",
353 GL_RED,
354 GL_UNSIGNED_NORMALIZED,
355 16, 0, 0, 0,
356 0, 0, 0, 0, 0,
357 1, 1, 2
358 },
359 {
360 MESA_FORMAT_RG1616,
361 "MESA_FORMAT_RG1616",
362 GL_RG,
363 GL_UNSIGNED_NORMALIZED,
364 16, 16, 0, 0,
365 0, 0, 0, 0, 0,
366 1, 1, 4
367 },
368 {
369 MESA_FORMAT_RG1616_REV,
370 "MESA_FORMAT_RG1616_REV",
371 GL_RG,
372 GL_UNSIGNED_NORMALIZED,
373 16, 16, 0, 0,
374 0, 0, 0, 0, 0,
375 1, 1, 4
376 },
377 {
378 MESA_FORMAT_Z24_S8, /* Name */
379 "MESA_FORMAT_Z24_S8", /* StrName */
380 GL_DEPTH_STENCIL, /* BaseFormat */
381 GL_UNSIGNED_INT, /* DataType */
382 0, 0, 0, 0, /* Red/Green/Blue/AlphaBits */
383 0, 0, 0, 24, 8, /* Lum/Int/Index/Depth/StencilBits */
384 1, 1, 4 /* BlockWidth/Height,Bytes */
385 },
386 {
387 MESA_FORMAT_S8_Z24, /* Name */
388 "MESA_FORMAT_S8_Z24", /* StrName */
389 GL_DEPTH_STENCIL, /* BaseFormat */
390 GL_UNSIGNED_INT, /* DataType */
391 0, 0, 0, 0, /* Red/Green/Blue/AlphaBits */
392 0, 0, 0, 24, 8, /* Lum/Int/Index/Depth/StencilBits */
393 1, 1, 4 /* BlockWidth/Height,Bytes */
394 },
395 {
396 MESA_FORMAT_Z16, /* Name */
397 "MESA_FORMAT_Z16", /* StrName */
398 GL_DEPTH_COMPONENT, /* BaseFormat */
399 GL_UNSIGNED_INT, /* DataType */
400 0, 0, 0, 0, /* Red/Green/Blue/AlphaBits */
401 0, 0, 0, 16, 0, /* Lum/Int/Index/Depth/StencilBits */
402 1, 1, 2 /* BlockWidth/Height,Bytes */
403 },
404 {
405 MESA_FORMAT_X8_Z24, /* Name */
406 "MESA_FORMAT_X8_Z24", /* StrName */
407 GL_DEPTH_COMPONENT, /* BaseFormat */
408 GL_UNSIGNED_INT, /* DataType */
409 0, 0, 0, 0, /* Red/Green/Blue/AlphaBits */
410 0, 0, 0, 24, 0, /* Lum/Int/Index/Depth/StencilBits */
411 1, 1, 4 /* BlockWidth/Height,Bytes */
412 },
413 {
414 MESA_FORMAT_Z24_X8, /* Name */
415 "MESA_FORMAT_Z24_X8", /* StrName */
416 GL_DEPTH_COMPONENT, /* BaseFormat */
417 GL_UNSIGNED_INT, /* DataType */
418 0, 0, 0, 0, /* Red/Green/Blue/AlphaBits */
419 0, 0, 0, 24, 0, /* Lum/Int/Index/Depth/StencilBits */
420 1, 1, 4 /* BlockWidth/Height,Bytes */
421 },
422 {
423 MESA_FORMAT_Z32, /* Name */
424 "MESA_FORMAT_Z32", /* StrName */
425 GL_DEPTH_COMPONENT, /* BaseFormat */
426 GL_UNSIGNED_INT, /* DataType */
427 0, 0, 0, 0, /* Red/Green/Blue/AlphaBits */
428 0, 0, 0, 32, 0, /* Lum/Int/Index/Depth/StencilBits */
429 1, 1, 4 /* BlockWidth/Height,Bytes */
430 },
431 {
432 MESA_FORMAT_S8, /* Name */
433 "MESA_FORMAT_S8", /* StrName */
434 GL_STENCIL_INDEX, /* BaseFormat */
435 GL_UNSIGNED_INT, /* DataType */
436 0, 0, 0, 0, /* Red/Green/Blue/AlphaBits */
437 0, 0, 0, 0, 8, /* Lum/Int/Index/Depth/StencilBits */
438 1, 1, 1 /* BlockWidth/Height,Bytes */
439 },
440 {
441 MESA_FORMAT_SRGB8,
442 "MESA_FORMAT_SRGB8",
443 GL_RGB,
444 GL_UNSIGNED_NORMALIZED,
445 8, 8, 8, 0,
446 0, 0, 0, 0, 0,
447 1, 1, 3
448 },
449 {
450 MESA_FORMAT_SRGBA8,
451 "MESA_FORMAT_SRGBA8",
452 GL_RGBA,
453 GL_UNSIGNED_NORMALIZED,
454 8, 8, 8, 8,
455 0, 0, 0, 0, 0,
456 1, 1, 4
457 },
458 {
459 MESA_FORMAT_SARGB8,
460 "MESA_FORMAT_SARGB8",
461 GL_RGBA,
462 GL_UNSIGNED_NORMALIZED,
463 8, 8, 8, 8,
464 0, 0, 0, 0, 0,
465 1, 1, 4
466 },
467 {
468 MESA_FORMAT_SL8,
469 "MESA_FORMAT_SL8",
470 GL_LUMINANCE,
471 GL_UNSIGNED_NORMALIZED,
472 0, 0, 0, 0,
473 8, 0, 0, 0, 0,
474 1, 1, 1
475 },
476 {
477 MESA_FORMAT_SLA8,
478 "MESA_FORMAT_SLA8",
479 GL_LUMINANCE_ALPHA,
480 GL_UNSIGNED_NORMALIZED,
481 0, 0, 0, 8,
482 8, 0, 0, 0, 0,
483 1, 1, 2
484 },
485 {
486 MESA_FORMAT_SRGB_DXT1, /* Name */
487 "MESA_FORMAT_SRGB_DXT1", /* StrName */
488 GL_RGB, /* BaseFormat */
489 GL_UNSIGNED_NORMALIZED, /* DataType */
490 4, 4, 4, 0, /* approx Red/Green/Blue/AlphaBits */
491 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
492 4, 4, 8 /* 8 bytes per 4x4 block */
493 },
494 {
495 MESA_FORMAT_SRGBA_DXT1,
496 "MESA_FORMAT_SRGBA_DXT1",
497 GL_RGBA,
498 GL_UNSIGNED_NORMALIZED,
499 4, 4, 4, 4,
500 0, 0, 0, 0, 0,
501 4, 4, 8 /* 8 bytes per 4x4 block */
502 },
503 {
504 MESA_FORMAT_SRGBA_DXT3,
505 "MESA_FORMAT_SRGBA_DXT3",
506 GL_RGBA,
507 GL_UNSIGNED_NORMALIZED,
508 4, 4, 4, 4,
509 0, 0, 0, 0, 0,
510 4, 4, 16 /* 16 bytes per 4x4 block */
511 },
512 {
513 MESA_FORMAT_SRGBA_DXT5,
514 "MESA_FORMAT_SRGBA_DXT5",
515 GL_RGBA,
516 GL_UNSIGNED_NORMALIZED,
517 4, 4, 4, 4,
518 0, 0, 0, 0, 0,
519 4, 4, 16 /* 16 bytes per 4x4 block */
520 },
521
522 {
523 MESA_FORMAT_RGB_FXT1,
524 "MESA_FORMAT_RGB_FXT1",
525 GL_RGB,
526 GL_UNSIGNED_NORMALIZED,
527 4, 4, 4, 0, /* approx Red/Green/BlueBits */
528 0, 0, 0, 0, 0,
529 8, 4, 16 /* 16 bytes per 8x4 block */
530 },
531 {
532 MESA_FORMAT_RGBA_FXT1,
533 "MESA_FORMAT_RGBA_FXT1",
534 GL_RGBA,
535 GL_UNSIGNED_NORMALIZED,
536 4, 4, 4, 1, /* approx Red/Green/Blue/AlphaBits */
537 0, 0, 0, 0, 0,
538 8, 4, 16 /* 16 bytes per 8x4 block */
539 },
540
541 {
542 MESA_FORMAT_RGB_DXT1, /* Name */
543 "MESA_FORMAT_RGB_DXT1", /* StrName */
544 GL_RGB, /* BaseFormat */
545 GL_UNSIGNED_NORMALIZED, /* DataType */
546 4, 4, 4, 0, /* approx Red/Green/Blue/AlphaBits */
547 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
548 4, 4, 8 /* 8 bytes per 4x4 block */
549 },
550 {
551 MESA_FORMAT_RGBA_DXT1,
552 "MESA_FORMAT_RGBA_DXT1",
553 GL_RGBA,
554 GL_UNSIGNED_NORMALIZED,
555 4, 4, 4, 4,
556 0, 0, 0, 0, 0,
557 4, 4, 8 /* 8 bytes per 4x4 block */
558 },
559 {
560 MESA_FORMAT_RGBA_DXT3,
561 "MESA_FORMAT_RGBA_DXT3",
562 GL_RGBA,
563 GL_UNSIGNED_NORMALIZED,
564 4, 4, 4, 4,
565 0, 0, 0, 0, 0,
566 4, 4, 16 /* 16 bytes per 4x4 block */
567 },
568 {
569 MESA_FORMAT_RGBA_DXT5,
570 "MESA_FORMAT_RGBA_DXT5",
571 GL_RGBA,
572 GL_UNSIGNED_NORMALIZED,
573 4, 4, 4, 4,
574 0, 0, 0, 0, 0,
575 4, 4, 16 /* 16 bytes per 4x4 block */
576 },
577 {
578 MESA_FORMAT_RGBA_FLOAT32,
579 "MESA_FORMAT_RGBA_FLOAT32",
580 GL_RGBA,
581 GL_FLOAT,
582 32, 32, 32, 32,
583 0, 0, 0, 0, 0,
584 1, 1, 16
585 },
586 {
587 MESA_FORMAT_RGBA_FLOAT16,
588 "MESA_FORMAT_RGBA_FLOAT16",
589 GL_RGBA,
590 GL_FLOAT,
591 16, 16, 16, 16,
592 0, 0, 0, 0, 0,
593 1, 1, 8
594 },
595 {
596 MESA_FORMAT_RGB_FLOAT32,
597 "MESA_FORMAT_RGB_FLOAT32",
598 GL_RGB,
599 GL_FLOAT,
600 32, 32, 32, 0,
601 0, 0, 0, 0, 0,
602 1, 1, 12
603 },
604 {
605 MESA_FORMAT_RGB_FLOAT16,
606 "MESA_FORMAT_RGB_FLOAT16",
607 GL_RGB,
608 GL_FLOAT,
609 16, 16, 16, 0,
610 0, 0, 0, 0, 0,
611 1, 1, 6
612 },
613 {
614 MESA_FORMAT_ALPHA_FLOAT32,
615 "MESA_FORMAT_ALPHA_FLOAT32",
616 GL_ALPHA,
617 GL_FLOAT,
618 0, 0, 0, 32,
619 0, 0, 0, 0, 0,
620 1, 1, 4
621 },
622 {
623 MESA_FORMAT_ALPHA_FLOAT16,
624 "MESA_FORMAT_ALPHA_FLOAT16",
625 GL_ALPHA,
626 GL_FLOAT,
627 0, 0, 0, 16,
628 0, 0, 0, 0, 0,
629 1, 1, 2
630 },
631 {
632 MESA_FORMAT_LUMINANCE_FLOAT32,
633 "MESA_FORMAT_LUMINANCE_FLOAT32",
634 GL_ALPHA,
635 GL_FLOAT,
636 0, 0, 0, 0,
637 32, 0, 0, 0, 0,
638 1, 1, 4
639 },
640 {
641 MESA_FORMAT_LUMINANCE_FLOAT16,
642 "MESA_FORMAT_LUMINANCE_FLOAT16",
643 GL_ALPHA,
644 GL_FLOAT,
645 0, 0, 0, 0,
646 16, 0, 0, 0, 0,
647 1, 1, 2
648 },
649 {
650 MESA_FORMAT_LUMINANCE_ALPHA_FLOAT32,
651 "MESA_FORMAT_LUMINANCE_ALPHA_FLOAT32",
652 GL_LUMINANCE_ALPHA,
653 GL_FLOAT,
654 0, 0, 0, 32,
655 32, 0, 0, 0, 0,
656 1, 1, 8
657 },
658 {
659 MESA_FORMAT_LUMINANCE_ALPHA_FLOAT16,
660 "MESA_FORMAT_LUMINANCE_ALPHA_FLOAT16",
661 GL_LUMINANCE_ALPHA,
662 GL_FLOAT,
663 0, 0, 0, 16,
664 16, 0, 0, 0, 0,
665 1, 1, 4
666 },
667 {
668 MESA_FORMAT_INTENSITY_FLOAT32,
669 "MESA_FORMAT_INTENSITY_FLOAT32",
670 GL_INTENSITY,
671 GL_FLOAT,
672 0, 0, 0, 0,
673 0, 32, 0, 0, 0,
674 1, 1, 4
675 },
676 {
677 MESA_FORMAT_INTENSITY_FLOAT16,
678 "MESA_FORMAT_INTENSITY_FLOAT16",
679 GL_INTENSITY,
680 GL_FLOAT,
681 0, 0, 0, 0,
682 0, 16, 0, 0, 0,
683 1, 1, 2
684 },
685
686 /* unnormalized signed int formats */
687 {
688 MESA_FORMAT_RGBA_INT8,
689 "MESA_FORMAT_RGBA_INT8",
690 GL_RGBA,
691 GL_INT,
692 8, 8, 8, 8,
693 0, 0, 0, 0, 0,
694 1, 1, 4
695 },
696 {
697 MESA_FORMAT_RGBA_INT16,
698 "MESA_FORMAT_RGBA_INT16",
699 GL_RGBA,
700 GL_INT,
701 16, 16, 16, 16,
702 0, 0, 0, 0, 0,
703 1, 1, 8
704 },
705 {
706 MESA_FORMAT_RGBA_INT32,
707 "MESA_FORMAT_RGBA_INT32",
708 GL_RGBA,
709 GL_INT,
710 32, 32, 32, 32,
711 0, 0, 0, 0, 0,
712 1, 1, 16
713 },
714
715 /* unnormalized unsigned int formats */
716 {
717 MESA_FORMAT_RGBA_UINT8,
718 "MESA_FORMAT_RGBA_UINT8",
719 GL_RGBA,
720 GL_UNSIGNED_INT,
721 8, 8, 8, 8,
722 0, 0, 0, 0, 0,
723 1, 1, 4
724 },
725 {
726 MESA_FORMAT_RGBA_UINT16,
727 "MESA_FORMAT_RGBA_UINT16",
728 GL_RGBA,
729 GL_UNSIGNED_INT,
730 16, 16, 16, 16,
731 0, 0, 0, 0, 0,
732 1, 1, 8
733 },
734 {
735 MESA_FORMAT_RGBA_UINT32,
736 "MESA_FORMAT_RGBA_UINT32",
737 GL_RGBA,
738 GL_UNSIGNED_INT,
739 32, 32, 32, 32,
740 0, 0, 0, 0, 0,
741 1, 1, 16
742 },
743
744
745 {
746 MESA_FORMAT_DUDV8,
747 "MESA_FORMAT_DUDV8",
748 GL_DUDV_ATI,
749 GL_SIGNED_NORMALIZED,
750 0, 0, 0, 0,
751 0, 0, 0, 0, 0,
752 1, 1, 2
753 },
754
755 /* Signed 8 bits / channel */
756 {
757 MESA_FORMAT_SIGNED_R8, /* Name */
758 "MESA_FORMAT_SIGNED_R8", /* StrName */
759 GL_RGBA, /* BaseFormat */
760 GL_SIGNED_NORMALIZED, /* DataType */
761 8, 0, 0, 0, /* Red/Green/Blue/AlphaBits */
762 0, 0, 0, 0, 0, /* Lum/Int/Index/Depth/StencilBits */
763 1, 1, 1 /* BlockWidth/Height,Bytes */
764 },
765 {
766 MESA_FORMAT_SIGNED_RG88,
767 "MESA_FORMAT_SIGNED_RG88",
768 GL_RGBA,
769 GL_SIGNED_NORMALIZED,
770 8, 8, 0, 0,
771 0, 0, 0, 0, 0,
772 1, 1, 2
773 },
774 {
775 MESA_FORMAT_SIGNED_RGBX8888,
776 "MESA_FORMAT_SIGNED_RGBX8888",
777 GL_RGBA,
778 GL_SIGNED_NORMALIZED,
779 8, 8, 8, 0,
780 0, 0, 0, 0, 0,
781 1, 1, 4 /* 4 bpp, but no alpha */
782 },
783 {
784 MESA_FORMAT_SIGNED_RGBA8888,
785 "MESA_FORMAT_SIGNED_RGBA8888",
786 GL_RGBA,
787 GL_SIGNED_NORMALIZED,
788 8, 8, 8, 8,
789 0, 0, 0, 0, 0,
790 1, 1, 4
791 },
792 {
793 MESA_FORMAT_SIGNED_RGBA8888_REV,
794 "MESA_FORMAT_SIGNED_RGBA8888_REV",
795 GL_RGBA,
796 GL_SIGNED_NORMALIZED,
797 8, 8, 8, 8,
798 0, 0, 0, 0, 0,
799 1, 1, 4
800 },
801
802 /* Signed 16 bits / channel */
803 {
804 MESA_FORMAT_SIGNED_R_16,
805 "MESA_FORMAT_SIGNED_R_16",
806 GL_RGBA,
807 GL_SIGNED_NORMALIZED,
808 16, 0, 0, 0,
809 0, 0, 0, 0, 0,
810 1, 1, 2
811 },
812 {
813 MESA_FORMAT_SIGNED_RG_16,
814 "MESA_FORMAT_SIGNED_RG_16",
815 GL_RGBA,
816 GL_SIGNED_NORMALIZED,
817 16, 16, 0, 0,
818 0, 0, 0, 0, 0,
819 1, 1, 4
820 },
821 {
822 MESA_FORMAT_SIGNED_RGB_16,
823 "MESA_FORMAT_SIGNED_RGB_16",
824 GL_RGBA,
825 GL_SIGNED_NORMALIZED,
826 16, 16, 16, 0,
827 0, 0, 0, 0, 0,
828 1, 1, 6
829 },
830 {
831 MESA_FORMAT_SIGNED_RGBA_16,
832 "MESA_FORMAT_SIGNED_RGBA_16",
833 GL_RGBA,
834 GL_SIGNED_NORMALIZED,
835 16, 16, 16, 16,
836 0, 0, 0, 0, 0,
837 1, 1, 8
838 },
839 {
840 MESA_FORMAT_RGBA_16,
841 "MESA_FORMAT_RGBA_16",
842 GL_RGBA,
843 GL_UNSIGNED_NORMALIZED,
844 16, 16, 16, 16,
845 0, 0, 0, 0, 0,
846 1, 1, 8
847 }
848 };
849
850
851
852 static const struct gl_format_info *
853 _mesa_get_format_info(gl_format format)
854 {
855 const struct gl_format_info *info = &format_info[format];
856 assert(info->Name == format);
857 return info;
858 }
859
860
861 /** Return string name of format (for debugging) */
862 const char *
863 _mesa_get_format_name(gl_format format)
864 {
865 const struct gl_format_info *info = _mesa_get_format_info(format);
866 ASSERT(info->BytesPerBlock);
867 return info->StrName;
868 }
869
870
871
872 /**
873 * Return bytes needed to store a block of pixels in the given format.
874 * Normally, a block is 1x1 (a single pixel). But for compressed formats
875 * a block may be 4x4 or 8x4, etc.
876 */
877 GLuint
878 _mesa_get_format_bytes(gl_format format)
879 {
880 const struct gl_format_info *info = _mesa_get_format_info(format);
881 ASSERT(info->BytesPerBlock);
882 return info->BytesPerBlock;
883 }
884
885
886 /**
887 * Return bits per component for the given format.
888 * \param format one of MESA_FORMAT_x
889 * \param pname the component, such as GL_RED_BITS, GL_TEXTURE_BLUE_BITS, etc.
890 */
891 GLint
892 _mesa_get_format_bits(gl_format format, GLenum pname)
893 {
894 const struct gl_format_info *info = _mesa_get_format_info(format);
895
896 switch (pname) {
897 case GL_RED_BITS:
898 case GL_TEXTURE_RED_SIZE:
899 case GL_RENDERBUFFER_RED_SIZE_EXT:
900 case GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE:
901 return info->RedBits;
902 case GL_GREEN_BITS:
903 case GL_TEXTURE_GREEN_SIZE:
904 case GL_RENDERBUFFER_GREEN_SIZE_EXT:
905 case GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE:
906 return info->GreenBits;
907 case GL_BLUE_BITS:
908 case GL_TEXTURE_BLUE_SIZE:
909 case GL_RENDERBUFFER_BLUE_SIZE_EXT:
910 case GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE:
911 return info->BlueBits;
912 case GL_ALPHA_BITS:
913 case GL_TEXTURE_ALPHA_SIZE:
914 case GL_RENDERBUFFER_ALPHA_SIZE_EXT:
915 case GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE:
916 return info->AlphaBits;
917 case GL_TEXTURE_INTENSITY_SIZE:
918 return info->IntensityBits;
919 case GL_TEXTURE_LUMINANCE_SIZE:
920 return info->LuminanceBits;
921 case GL_INDEX_BITS:
922 case GL_TEXTURE_INDEX_SIZE_EXT:
923 return info->IndexBits;
924 case GL_DEPTH_BITS:
925 case GL_TEXTURE_DEPTH_SIZE_ARB:
926 case GL_RENDERBUFFER_DEPTH_SIZE_EXT:
927 case GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE:
928 return info->DepthBits;
929 case GL_STENCIL_BITS:
930 case GL_TEXTURE_STENCIL_SIZE_EXT:
931 case GL_RENDERBUFFER_STENCIL_SIZE_EXT:
932 case GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE:
933 return info->StencilBits;
934 default:
935 _mesa_problem(NULL, "bad pname in _mesa_get_format_bits()");
936 return 0;
937 }
938 }
939
940
941 /**
942 * Return the data type (or more specifically, the data representation)
943 * for the given format.
944 * The return value will be one of:
945 * GL_UNSIGNED_NORMALIZED = unsigned int representing [0,1]
946 * GL_SIGNED_NORMALIZED = signed int representing [-1, 1]
947 * GL_UNSIGNED_INT = an ordinary unsigned integer
948 * GL_INT = an ordinary signed integer
949 * GL_FLOAT = an ordinary float
950 */
951 GLenum
952 _mesa_get_format_datatype(gl_format format)
953 {
954 const struct gl_format_info *info = _mesa_get_format_info(format);
955 return info->DataType;
956 }
957
958
959 /**
960 * Return the basic format for the given type. The result will be
961 * one of GL_RGB, GL_RGBA, GL_ALPHA, GL_LUMINANCE, GL_LUMINANCE_ALPHA,
962 * GL_INTENSITY, GL_YCBCR_MESA, GL_COLOR_INDEX, GL_DEPTH_COMPONENT,
963 * GL_STENCIL_INDEX, GL_DEPTH_STENCIL.
964 */
965 GLenum
966 _mesa_get_format_base_format(gl_format format)
967 {
968 const struct gl_format_info *info = _mesa_get_format_info(format);
969 return info->BaseFormat;
970 }
971
972
973 /**
974 * Return the block size (in pixels) for the given format. Normally
975 * the block size is 1x1. But compressed formats will have block sizes
976 * of 4x4 or 8x4 pixels, etc.
977 * \param bw returns block width in pixels
978 * \param bh returns block height in pixels
979 */
980 void
981 _mesa_get_format_block_size(gl_format format, GLuint *bw, GLuint *bh)
982 {
983 const struct gl_format_info *info = _mesa_get_format_info(format);
984 *bw = info->BlockWidth;
985 *bh = info->BlockHeight;
986 }
987
988
989 /** Is the given format a compressed format? */
990 GLboolean
991 _mesa_is_format_compressed(gl_format format)
992 {
993 const struct gl_format_info *info = _mesa_get_format_info(format);
994 return info->BlockWidth > 1 || info->BlockHeight > 1;
995 }
996
997
998 /**
999 * Determine if the given format represents a packed depth/stencil buffer.
1000 */
1001 GLboolean
1002 _mesa_is_format_packed_depth_stencil(gl_format format)
1003 {
1004 const struct gl_format_info *info = _mesa_get_format_info(format);
1005
1006 return info->BaseFormat == GL_DEPTH_STENCIL;
1007 }
1008
1009
1010 /**
1011 * Is the given format a signed/unsigned integer color format?
1012 */
1013 GLboolean
1014 _mesa_is_format_integer_color(gl_format format)
1015 {
1016 const struct gl_format_info *info = _mesa_get_format_info(format);
1017 return (info->DataType == GL_INT || info->DataType == GL_UNSIGNED_INT) &&
1018 info->BaseFormat != GL_DEPTH_COMPONENT &&
1019 info->BaseFormat != GL_DEPTH_STENCIL &&
1020 info->BaseFormat != GL_STENCIL_INDEX;
1021 }
1022
1023
1024 /**
1025 * Return color encoding for given format.
1026 * \return GL_LINEAR or GL_SRGB
1027 */
1028 GLenum
1029 _mesa_get_format_color_encoding(gl_format format)
1030 {
1031 /* XXX this info should be encoded in gl_format_info */
1032 switch (format) {
1033 case MESA_FORMAT_SRGB8:
1034 case MESA_FORMAT_SRGBA8:
1035 case MESA_FORMAT_SARGB8:
1036 case MESA_FORMAT_SL8:
1037 case MESA_FORMAT_SLA8:
1038 case MESA_FORMAT_SRGB_DXT1:
1039 case MESA_FORMAT_SRGBA_DXT1:
1040 case MESA_FORMAT_SRGBA_DXT3:
1041 case MESA_FORMAT_SRGBA_DXT5:
1042 return GL_SRGB;
1043 default:
1044 return GL_LINEAR;
1045 }
1046 }
1047
1048
1049 /**
1050 * Return number of bytes needed to store an image of the given size
1051 * in the given format.
1052 */
1053 GLuint
1054 _mesa_format_image_size(gl_format format, GLsizei width,
1055 GLsizei height, GLsizei depth)
1056 {
1057 const struct gl_format_info *info = _mesa_get_format_info(format);
1058 /* Strictly speaking, a conditional isn't needed here */
1059 if (info->BlockWidth > 1 || info->BlockHeight > 1) {
1060 /* compressed format */
1061 const GLuint bw = info->BlockWidth, bh = info->BlockHeight;
1062 const GLuint wblocks = (width + bw - 1) / bw;
1063 const GLuint hblocks = (height + bh - 1) / bh;
1064 const GLuint sz = wblocks * hblocks * info->BytesPerBlock;
1065 return sz;
1066 }
1067 else {
1068 /* non-compressed */
1069 const GLuint sz = width * height * depth * info->BytesPerBlock;
1070 return sz;
1071 }
1072 }
1073
1074
1075
1076 GLint
1077 _mesa_format_row_stride(gl_format format, GLsizei width)
1078 {
1079 const struct gl_format_info *info = _mesa_get_format_info(format);
1080 /* Strictly speaking, a conditional isn't needed here */
1081 if (info->BlockWidth > 1 || info->BlockHeight > 1) {
1082 /* compressed format */
1083 const GLuint bw = info->BlockWidth;
1084 const GLuint wblocks = (width + bw - 1) / bw;
1085 const GLint stride = wblocks * info->BytesPerBlock;
1086 return stride;
1087 }
1088 else {
1089 const GLint stride = width * info->BytesPerBlock;
1090 return stride;
1091 }
1092 }
1093
1094
1095
1096 /**
1097 * Do sanity checking of the format info table.
1098 */
1099 void
1100 _mesa_test_formats(void)
1101 {
1102 GLuint i;
1103
1104 assert(Elements(format_info) == MESA_FORMAT_COUNT);
1105
1106 for (i = 0; i < MESA_FORMAT_COUNT; i++) {
1107 const struct gl_format_info *info = _mesa_get_format_info(i);
1108 assert(info);
1109
1110 assert(info->Name == i);
1111
1112 if (info->Name == MESA_FORMAT_NONE)
1113 continue;
1114
1115 if (info->BlockWidth == 1 && info->BlockHeight == 1) {
1116 if (info->RedBits > 0) {
1117 GLuint t = info->RedBits + info->GreenBits
1118 + info->BlueBits + info->AlphaBits;
1119 assert(t / 8 == info->BytesPerBlock);
1120 (void) t;
1121 }
1122 }
1123
1124 assert(info->DataType == GL_UNSIGNED_NORMALIZED ||
1125 info->DataType == GL_SIGNED_NORMALIZED ||
1126 info->DataType == GL_UNSIGNED_INT ||
1127 info->DataType == GL_FLOAT);
1128
1129 if (info->BaseFormat == GL_RGB) {
1130 assert(info->RedBits > 0);
1131 assert(info->GreenBits > 0);
1132 assert(info->BlueBits > 0);
1133 assert(info->AlphaBits == 0);
1134 assert(info->LuminanceBits == 0);
1135 assert(info->IntensityBits == 0);
1136 }
1137 else if (info->BaseFormat == GL_RGBA) {
1138 assert(info->RedBits > 0);
1139 assert(info->GreenBits > 0);
1140 assert(info->BlueBits > 0);
1141 assert(info->AlphaBits > 0);
1142 assert(info->LuminanceBits == 0);
1143 assert(info->IntensityBits == 0);
1144 }
1145 else if (info->BaseFormat == GL_RG) {
1146 assert(info->RedBits > 0);
1147 assert(info->GreenBits > 0);
1148 assert(info->BlueBits == 0);
1149 assert(info->AlphaBits == 0);
1150 assert(info->LuminanceBits == 0);
1151 assert(info->IntensityBits == 0);
1152 }
1153 else if (info->BaseFormat == GL_RED) {
1154 assert(info->RedBits > 0);
1155 assert(info->GreenBits == 0);
1156 assert(info->BlueBits == 0);
1157 assert(info->AlphaBits == 0);
1158 assert(info->LuminanceBits == 0);
1159 assert(info->IntensityBits == 0);
1160 }
1161 else if (info->BaseFormat == GL_LUMINANCE) {
1162 assert(info->RedBits == 0);
1163 assert(info->GreenBits == 0);
1164 assert(info->BlueBits == 0);
1165 assert(info->AlphaBits == 0);
1166 assert(info->LuminanceBits > 0);
1167 assert(info->IntensityBits == 0);
1168 }
1169 else if (info->BaseFormat == GL_INTENSITY) {
1170 assert(info->RedBits == 0);
1171 assert(info->GreenBits == 0);
1172 assert(info->BlueBits == 0);
1173 assert(info->AlphaBits == 0);
1174 assert(info->LuminanceBits == 0);
1175 assert(info->IntensityBits > 0);
1176 }
1177
1178 }
1179 }
1180
1181
1182
1183 /**
1184 * Return datatype and number of components per texel for the given gl_format.
1185 * Only used for mipmap generation code.
1186 */
1187 void
1188 _mesa_format_to_type_and_comps(gl_format format,
1189 GLenum *datatype, GLuint *comps)
1190 {
1191 switch (format) {
1192 case MESA_FORMAT_RGBA8888:
1193 case MESA_FORMAT_RGBA8888_REV:
1194 case MESA_FORMAT_ARGB8888:
1195 case MESA_FORMAT_ARGB8888_REV:
1196 case MESA_FORMAT_XRGB8888:
1197 case MESA_FORMAT_XRGB8888_REV:
1198 *datatype = GL_UNSIGNED_BYTE;
1199 *comps = 4;
1200 return;
1201 case MESA_FORMAT_RGB888:
1202 case MESA_FORMAT_BGR888:
1203 *datatype = GL_UNSIGNED_BYTE;
1204 *comps = 3;
1205 return;
1206 case MESA_FORMAT_RGB565:
1207 case MESA_FORMAT_RGB565_REV:
1208 *datatype = GL_UNSIGNED_SHORT_5_6_5;
1209 *comps = 3;
1210 return;
1211
1212 case MESA_FORMAT_ARGB4444:
1213 case MESA_FORMAT_ARGB4444_REV:
1214 *datatype = GL_UNSIGNED_SHORT_4_4_4_4;
1215 *comps = 4;
1216 return;
1217
1218 case MESA_FORMAT_ARGB1555:
1219 case MESA_FORMAT_ARGB1555_REV:
1220 *datatype = GL_UNSIGNED_SHORT_1_5_5_5_REV;
1221 *comps = 4;
1222 return;
1223
1224 case MESA_FORMAT_RGBA5551:
1225 *datatype = GL_UNSIGNED_SHORT_5_5_5_1;
1226 *comps = 4;
1227 return;
1228
1229 case MESA_FORMAT_AL88:
1230 case MESA_FORMAT_AL88_REV:
1231 case MESA_FORMAT_RG88:
1232 case MESA_FORMAT_RG88_REV:
1233 *datatype = GL_UNSIGNED_BYTE;
1234 *comps = 2;
1235 return;
1236
1237 case MESA_FORMAT_AL1616:
1238 case MESA_FORMAT_AL1616_REV:
1239 case MESA_FORMAT_RG1616:
1240 case MESA_FORMAT_RG1616_REV:
1241 *datatype = GL_UNSIGNED_SHORT;
1242 *comps = 2;
1243 return;
1244
1245 case MESA_FORMAT_R16:
1246 *datatype = GL_UNSIGNED_SHORT;
1247 *comps = 1;
1248 return;
1249
1250 case MESA_FORMAT_RGB332:
1251 *datatype = GL_UNSIGNED_BYTE_3_3_2;
1252 *comps = 3;
1253 return;
1254
1255 case MESA_FORMAT_A8:
1256 case MESA_FORMAT_L8:
1257 case MESA_FORMAT_I8:
1258 case MESA_FORMAT_CI8:
1259 case MESA_FORMAT_R8:
1260 case MESA_FORMAT_S8:
1261 *datatype = GL_UNSIGNED_BYTE;
1262 *comps = 1;
1263 return;
1264
1265 case MESA_FORMAT_YCBCR:
1266 case MESA_FORMAT_YCBCR_REV:
1267 *datatype = GL_UNSIGNED_SHORT;
1268 *comps = 2;
1269 return;
1270
1271 case MESA_FORMAT_Z24_S8:
1272 *datatype = GL_UNSIGNED_INT;
1273 *comps = 1; /* XXX OK? */
1274 return;
1275
1276 case MESA_FORMAT_S8_Z24:
1277 *datatype = GL_UNSIGNED_INT;
1278 *comps = 1; /* XXX OK? */
1279 return;
1280
1281 case MESA_FORMAT_Z16:
1282 *datatype = GL_UNSIGNED_SHORT;
1283 *comps = 1;
1284 return;
1285
1286 case MESA_FORMAT_X8_Z24:
1287 *datatype = GL_UNSIGNED_INT;
1288 *comps = 1;
1289 return;
1290
1291 case MESA_FORMAT_Z24_X8:
1292 *datatype = GL_UNSIGNED_INT;
1293 *comps = 1;
1294 return;
1295
1296 case MESA_FORMAT_Z32:
1297 *datatype = GL_UNSIGNED_INT;
1298 *comps = 1;
1299 return;
1300
1301 case MESA_FORMAT_DUDV8:
1302 *datatype = GL_BYTE;
1303 *comps = 2;
1304 return;
1305
1306 case MESA_FORMAT_SIGNED_R8:
1307 *datatype = GL_BYTE;
1308 *comps = 1;
1309 return;
1310 case MESA_FORMAT_SIGNED_RG88:
1311 *datatype = GL_BYTE;
1312 *comps = 2;
1313 return;
1314 case MESA_FORMAT_SIGNED_RGBA8888:
1315 case MESA_FORMAT_SIGNED_RGBA8888_REV:
1316 case MESA_FORMAT_SIGNED_RGBX8888:
1317 *datatype = GL_BYTE;
1318 *comps = 4;
1319 return;
1320
1321 case MESA_FORMAT_RGBA_16:
1322 *datatype = GL_UNSIGNED_SHORT;
1323 *comps = 4;
1324 return;
1325
1326 case MESA_FORMAT_SIGNED_R_16:
1327 *datatype = GL_SHORT;
1328 *comps = 1;
1329 return;
1330 case MESA_FORMAT_SIGNED_RG_16:
1331 *datatype = GL_SHORT;
1332 *comps = 2;
1333 return;
1334 case MESA_FORMAT_SIGNED_RGB_16:
1335 *datatype = GL_SHORT;
1336 *comps = 3;
1337 return;
1338 case MESA_FORMAT_SIGNED_RGBA_16:
1339 *datatype = GL_SHORT;
1340 *comps = 4;
1341 return;
1342
1343 #if FEATURE_EXT_texture_sRGB
1344 case MESA_FORMAT_SRGB8:
1345 *datatype = GL_UNSIGNED_BYTE;
1346 *comps = 3;
1347 return;
1348 case MESA_FORMAT_SRGBA8:
1349 case MESA_FORMAT_SARGB8:
1350 *datatype = GL_UNSIGNED_BYTE;
1351 *comps = 4;
1352 return;
1353 case MESA_FORMAT_SL8:
1354 *datatype = GL_UNSIGNED_BYTE;
1355 *comps = 1;
1356 return;
1357 case MESA_FORMAT_SLA8:
1358 *datatype = GL_UNSIGNED_BYTE;
1359 *comps = 2;
1360 return;
1361 #endif
1362
1363 #if FEATURE_texture_fxt1
1364 case MESA_FORMAT_RGB_FXT1:
1365 case MESA_FORMAT_RGBA_FXT1:
1366 #endif
1367 #if FEATURE_texture_s3tc
1368 case MESA_FORMAT_RGB_DXT1:
1369 case MESA_FORMAT_RGBA_DXT1:
1370 case MESA_FORMAT_RGBA_DXT3:
1371 case MESA_FORMAT_RGBA_DXT5:
1372 #if FEATURE_EXT_texture_sRGB
1373 case MESA_FORMAT_SRGB_DXT1:
1374 case MESA_FORMAT_SRGBA_DXT1:
1375 case MESA_FORMAT_SRGBA_DXT3:
1376 case MESA_FORMAT_SRGBA_DXT5:
1377 #endif
1378 #endif
1379 /* XXX generate error instead? */
1380 *datatype = GL_UNSIGNED_BYTE;
1381 *comps = 0;
1382 return;
1383
1384 case MESA_FORMAT_RGBA_FLOAT32:
1385 *datatype = GL_FLOAT;
1386 *comps = 4;
1387 return;
1388 case MESA_FORMAT_RGBA_FLOAT16:
1389 *datatype = GL_HALF_FLOAT_ARB;
1390 *comps = 4;
1391 return;
1392 case MESA_FORMAT_RGB_FLOAT32:
1393 *datatype = GL_FLOAT;
1394 *comps = 3;
1395 return;
1396 case MESA_FORMAT_RGB_FLOAT16:
1397 *datatype = GL_HALF_FLOAT_ARB;
1398 *comps = 3;
1399 return;
1400 case MESA_FORMAT_LUMINANCE_ALPHA_FLOAT32:
1401 *datatype = GL_FLOAT;
1402 *comps = 2;
1403 return;
1404 case MESA_FORMAT_LUMINANCE_ALPHA_FLOAT16:
1405 *datatype = GL_HALF_FLOAT_ARB;
1406 *comps = 2;
1407 return;
1408 case MESA_FORMAT_ALPHA_FLOAT32:
1409 case MESA_FORMAT_LUMINANCE_FLOAT32:
1410 case MESA_FORMAT_INTENSITY_FLOAT32:
1411 *datatype = GL_FLOAT;
1412 *comps = 1;
1413 return;
1414 case MESA_FORMAT_ALPHA_FLOAT16:
1415 case MESA_FORMAT_LUMINANCE_FLOAT16:
1416 case MESA_FORMAT_INTENSITY_FLOAT16:
1417 *datatype = GL_HALF_FLOAT_ARB;
1418 *comps = 1;
1419 return;
1420
1421 case MESA_FORMAT_RGBA_INT8:
1422 *datatype = GL_BYTE;
1423 *comps = 4;
1424 return;
1425 case MESA_FORMAT_RGBA_INT16:
1426 *datatype = GL_SHORT;
1427 *comps = 4;
1428 return;
1429 case MESA_FORMAT_RGBA_INT32:
1430 *datatype = GL_INT;
1431 *comps = 4;
1432 return;
1433
1434 /**
1435 * \name Non-normalized unsigned integer formats.
1436 */
1437 case MESA_FORMAT_RGBA_UINT8:
1438 *datatype = GL_UNSIGNED_BYTE;
1439 *comps = 4;
1440 return;
1441 case MESA_FORMAT_RGBA_UINT16:
1442 *datatype = GL_UNSIGNED_SHORT;
1443 *comps = 4;
1444 return;
1445 case MESA_FORMAT_RGBA_UINT32:
1446 *datatype = GL_UNSIGNED_INT;
1447 *comps = 4;
1448 return;
1449
1450 case MESA_FORMAT_NONE:
1451 case MESA_FORMAT_COUNT:
1452 /* For debug builds, warn if any formats are not handled */
1453 #ifndef DEBUG
1454 default:
1455 #endif
1456 _mesa_problem(NULL, "bad format %s in _mesa_format_to_type_and_comps",
1457 _mesa_get_format_name(format));
1458 *datatype = 0;
1459 *comps = 1;
1460 }
1461 }