2 * Mesa 3-D graphics library
5 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
6 * Copyright (c) 2008-2009 VMware, Inc.
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:
15 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions of the Software.
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.
28 * \file texfetch_tmp.h
29 * Texel fetch functions template.
31 * This template file is used by texfetch.c to generate texel fetch functions
32 * for 1-D, 2-D and 3-D texture images.
34 * It should be expanded by defining \p DIM as the number texture dimensions
35 * (1, 2 or 3). According to the value of \p DIM a series of macros is defined
36 * for the texel lookup in the gl_texture_image::Data.
38 * \author Gareth Hughes
45 #define TEXEL_ADDR( type, image, i, j, k, size ) \
46 ((void) (j), (void) (k), ((type *)(image)->Data + (i) * (size)))
48 #define FETCH(x) fetch_texel_1d_##x
52 #define TEXEL_ADDR( type, image, i, j, k, size ) \
54 ((type *)(image)->Data + ((image)->RowStride * (j) + (i)) * (size)))
56 #define FETCH(x) fetch_texel_2d_##x
60 #define TEXEL_ADDR( type, image, i, j, k, size ) \
61 ((type *)(image)->Data + ((image)->ImageOffsets[k] \
62 + (image)->RowStride * (j) + (i)) * (size))
64 #define FETCH(x) fetch_texel_3d_##x
67 #error illegal number of texture dimensions
71 /* MESA_FORMAT_Z32 ***********************************************************/
73 /* Fetch depth texel from 1D, 2D or 3D 32-bit depth texture,
74 * returning 1 GLfloat.
75 * Note: no GLchan version of this function.
77 static void FETCH(f_z32
)( const struct gl_texture_image
*texImage
,
78 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
80 const GLuint
*src
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
81 texel
[0] = src
[0] * (1.0F
/ 0xffffffff);
85 static void store_texel_z32(struct gl_texture_image
*texImage
,
86 GLint i
, GLint j
, GLint k
, const void *texel
)
88 const GLuint
*depth
= (const GLuint
*) texel
;
89 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
95 /* MESA_FORMAT_Z16 ***********************************************************/
97 /* Fetch depth texel from 1D, 2D or 3D 16-bit depth texture,
98 * returning 1 GLfloat.
99 * Note: no GLchan version of this function.
101 static void FETCH(f_z16
)(const struct gl_texture_image
*texImage
,
102 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
104 const GLushort
*src
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
105 texel
[0] = src
[0] * (1.0F
/ 65535.0F
);
109 static void store_texel_z16(struct gl_texture_image
*texImage
,
110 GLint i
, GLint j
, GLint k
, const void *texel
)
112 const GLushort
*depth
= (const GLushort
*) texel
;
113 GLushort
*dst
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
119 /* MESA_FORMAT_RGBA_F32 ******************************************************/
121 /* Fetch texel from 1D, 2D or 3D RGBA_FLOAT32 texture, returning 4 GLfloats.
123 static void FETCH(f_rgba_f32
)( const struct gl_texture_image
*texImage
,
124 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
126 const GLfloat
*src
= TEXEL_ADDR(GLfloat
, texImage
, i
, j
, k
, 4);
127 texel
[RCOMP
] = src
[0];
128 texel
[GCOMP
] = src
[1];
129 texel
[BCOMP
] = src
[2];
130 texel
[ACOMP
] = src
[3];
134 static void store_texel_rgba_f32(struct gl_texture_image
*texImage
,
135 GLint i
, GLint j
, GLint k
, const void *texel
)
137 const GLfloat
*depth
= (const GLfloat
*) texel
;
138 GLfloat
*dst
= TEXEL_ADDR(GLfloat
, texImage
, i
, j
, k
, 1);
139 dst
[0] = depth
[RCOMP
];
140 dst
[1] = depth
[GCOMP
];
141 dst
[2] = depth
[BCOMP
];
142 dst
[3] = depth
[ACOMP
];
147 /* MESA_FORMAT_RGBA_F16 ******************************************************/
149 /* Fetch texel from 1D, 2D or 3D RGBA_FLOAT16 texture,
150 * returning 4 GLfloats.
152 static void FETCH(f_rgba_f16
)( const struct gl_texture_image
*texImage
,
153 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
155 const GLhalfARB
*src
= TEXEL_ADDR(GLhalfARB
, texImage
, i
, j
, k
, 4);
156 texel
[RCOMP
] = _mesa_half_to_float(src
[0]);
157 texel
[GCOMP
] = _mesa_half_to_float(src
[1]);
158 texel
[BCOMP
] = _mesa_half_to_float(src
[2]);
159 texel
[ACOMP
] = _mesa_half_to_float(src
[3]);
163 static void store_texel_rgba_f16(struct gl_texture_image
*texImage
,
164 GLint i
, GLint j
, GLint k
, const void *texel
)
166 const GLfloat
*depth
= (const GLfloat
*) texel
;
167 GLhalfARB
*dst
= TEXEL_ADDR(GLhalfARB
, texImage
, i
, j
, k
, 1);
168 dst
[0] = _mesa_float_to_half(*depth
);
172 /* MESA_FORMAT_RGB_F32 *******************************************************/
174 /* Fetch texel from 1D, 2D or 3D RGB_FLOAT32 texture,
175 * returning 4 GLfloats.
177 static void FETCH(f_rgb_f32
)( const struct gl_texture_image
*texImage
,
178 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
180 const GLfloat
*src
= TEXEL_ADDR(GLfloat
, texImage
, i
, j
, k
, 3);
181 texel
[RCOMP
] = src
[0];
182 texel
[GCOMP
] = src
[1];
183 texel
[BCOMP
] = src
[2];
188 static void store_texel_rgb_f32(struct gl_texture_image
*texImage
,
189 GLint i
, GLint j
, GLint k
, const void *texel
)
191 const GLfloat
*depth
= (const GLfloat
*) texel
;
192 GLfloat
*dst
= TEXEL_ADDR(GLfloat
, texImage
, i
, j
, k
, 1);
198 /* MESA_FORMAT_RGB_F16 *******************************************************/
200 /* Fetch texel from 1D, 2D or 3D RGB_FLOAT16 texture,
201 * returning 4 GLfloats.
203 static void FETCH(f_rgb_f16
)( const struct gl_texture_image
*texImage
,
204 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
206 const GLhalfARB
*src
= TEXEL_ADDR(GLhalfARB
, texImage
, i
, j
, k
, 3);
207 texel
[RCOMP
] = _mesa_half_to_float(src
[0]);
208 texel
[GCOMP
] = _mesa_half_to_float(src
[1]);
209 texel
[BCOMP
] = _mesa_half_to_float(src
[2]);
214 static void store_texel_rgb_f16(struct gl_texture_image
*texImage
,
215 GLint i
, GLint j
, GLint k
, const void *texel
)
217 const GLfloat
*depth
= (const GLfloat
*) texel
;
218 GLhalfARB
*dst
= TEXEL_ADDR(GLhalfARB
, texImage
, i
, j
, k
, 1);
219 dst
[0] = _mesa_float_to_half(*depth
);
224 /* MESA_FORMAT_ALPHA_F32 *****************************************************/
226 /* Fetch texel from 1D, 2D or 3D ALPHA_FLOAT32 texture,
227 * returning 4 GLfloats.
229 static void FETCH(f_alpha_f32
)( const struct gl_texture_image
*texImage
,
230 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
232 const GLfloat
*src
= TEXEL_ADDR(GLfloat
, texImage
, i
, j
, k
, 1);
236 texel
[ACOMP
] = src
[0];
240 static void store_texel_alpha_f32(struct gl_texture_image
*texImage
,
241 GLint i
, GLint j
, GLint k
, const void *texel
)
243 const GLfloat
*rgba
= (const GLfloat
*) texel
;
244 GLfloat
*dst
= TEXEL_ADDR(GLfloat
, texImage
, i
, j
, k
, 1);
245 dst
[0] = rgba
[ACOMP
];
250 /* MESA_FORMAT_ALPHA_F32 *****************************************************/
252 /* Fetch texel from 1D, 2D or 3D ALPHA_FLOAT16 texture,
253 * returning 4 GLfloats.
255 static void FETCH(f_alpha_f16
)( const struct gl_texture_image
*texImage
,
256 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
258 const GLhalfARB
*src
= TEXEL_ADDR(GLhalfARB
, texImage
, i
, j
, k
, 1);
262 texel
[ACOMP
] = _mesa_half_to_float(src
[0]);
266 static void store_texel_alpha_f16(struct gl_texture_image
*texImage
,
267 GLint i
, GLint j
, GLint k
, const void *texel
)
269 const GLfloat
*rgba
= (const GLfloat
*) texel
;
270 GLhalfARB
*dst
= TEXEL_ADDR(GLhalfARB
, texImage
, i
, j
, k
, 1);
271 dst
[0] = _mesa_float_to_half(rgba
[ACOMP
]);
276 /* MESA_FORMAT_LUMINANCE_F32 *************************************************/
278 /* Fetch texel from 1D, 2D or 3D LUMINANCE_FLOAT32 texture,
279 * returning 4 GLfloats.
281 static void FETCH(f_luminance_f32
)( const struct gl_texture_image
*texImage
,
282 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
284 const GLfloat
*src
= TEXEL_ADDR(GLfloat
, texImage
, i
, j
, k
, 1);
287 texel
[BCOMP
] = src
[0];
292 static void store_texel_luminance_f32(struct gl_texture_image
*texImage
,
293 GLint i
, GLint j
, GLint k
, const void *texel
)
295 const GLfloat
*rgba
= (const GLfloat
*) texel
;
296 GLfloat
*dst
= TEXEL_ADDR(GLfloat
, texImage
, i
, j
, k
, 1);
297 dst
[0] = rgba
[RCOMP
];
302 /* MESA_FORMAT_LUMINANCE_F16 *************************************************/
304 /* Fetch texel from 1D, 2D or 3D LUMINANCE_FLOAT16 texture,
305 * returning 4 GLfloats.
307 static void FETCH(f_luminance_f16
)( const struct gl_texture_image
*texImage
,
308 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
310 const GLhalfARB
*src
= TEXEL_ADDR(GLhalfARB
, texImage
, i
, j
, k
, 1);
313 texel
[BCOMP
] = _mesa_half_to_float(src
[0]);
318 static void store_texel_luminance_f16(struct gl_texture_image
*texImage
,
319 GLint i
, GLint j
, GLint k
, const void *texel
)
321 const GLfloat
*rgba
= (const GLfloat
*) texel
;
322 GLhalfARB
*dst
= TEXEL_ADDR(GLhalfARB
, texImage
, i
, j
, k
, 1);
323 dst
[0] = _mesa_float_to_half(rgba
[RCOMP
]);
328 /* MESA_FORMAT_LUMINANCE_ALPHA_F32 *******************************************/
330 /* Fetch texel from 1D, 2D or 3D LUMINANCE_ALPHA_FLOAT32 texture,
331 * returning 4 GLfloats.
333 static void FETCH(f_luminance_alpha_f32
)( const struct gl_texture_image
*texImage
,
334 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
336 const GLfloat
*src
= TEXEL_ADDR(GLfloat
, texImage
, i
, j
, k
, 2);
339 texel
[BCOMP
] = src
[0];
340 texel
[ACOMP
] = src
[1];
344 static void store_texel_luminance_alpha_f32(struct gl_texture_image
*texImage
,
345 GLint i
, GLint j
, GLint k
, const void *texel
)
347 const GLfloat
*rgba
= (const GLfloat
*) texel
;
348 GLfloat
*dst
= TEXEL_ADDR(GLfloat
, texImage
, i
, j
, k
, 2);
349 dst
[0] = rgba
[RCOMP
];
350 dst
[1] = rgba
[ACOMP
];
355 /* MESA_FORMAT_LUMINANCE_ALPHA_F16 *******************************************/
357 /* Fetch texel from 1D, 2D or 3D LUMINANCE_ALPHA_FLOAT16 texture,
358 * returning 4 GLfloats.
360 static void FETCH(f_luminance_alpha_f16
)( const struct gl_texture_image
*texImage
,
361 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
363 const GLhalfARB
*src
= TEXEL_ADDR(GLhalfARB
, texImage
, i
, j
, k
, 2);
366 texel
[BCOMP
] = _mesa_half_to_float(src
[0]);
367 texel
[ACOMP
] = _mesa_half_to_float(src
[1]);
371 static void store_texel_luminance_alpha_f16(struct gl_texture_image
*texImage
,
372 GLint i
, GLint j
, GLint k
, const void *texel
)
374 const GLfloat
*rgba
= (const GLfloat
*) texel
;
375 GLhalfARB
*dst
= TEXEL_ADDR(GLhalfARB
, texImage
, i
, j
, k
, 2);
376 dst
[0] = _mesa_float_to_half(rgba
[RCOMP
]);
377 dst
[1] = _mesa_float_to_half(rgba
[ACOMP
]);
382 /* MESA_FORMAT_INTENSITY_F32 *************************************************/
384 /* Fetch texel from 1D, 2D or 3D INTENSITY_FLOAT32 texture,
385 * returning 4 GLfloats.
387 static void FETCH(f_intensity_f32
)( const struct gl_texture_image
*texImage
,
388 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
390 const GLfloat
*src
= TEXEL_ADDR(GLfloat
, texImage
, i
, j
, k
, 1);
394 texel
[ACOMP
] = src
[0];
398 static void store_texel_intensity_f32(struct gl_texture_image
*texImage
,
399 GLint i
, GLint j
, GLint k
, const void *texel
)
401 const GLfloat
*rgba
= (const GLfloat
*) texel
;
402 GLfloat
*dst
= TEXEL_ADDR(GLfloat
, texImage
, i
, j
, k
, 1);
403 dst
[0] = rgba
[RCOMP
];
408 /* MESA_FORMAT_INTENSITY_F16 *************************************************/
410 /* Fetch texel from 1D, 2D or 3D INTENSITY_FLOAT16 texture,
411 * returning 4 GLfloats.
413 static void FETCH(f_intensity_f16
)( const struct gl_texture_image
*texImage
,
414 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
416 const GLhalfARB
*src
= TEXEL_ADDR(GLhalfARB
, texImage
, i
, j
, k
, 1);
420 texel
[ACOMP
] = _mesa_half_to_float(src
[0]);
424 static void store_texel_intensity_f16(struct gl_texture_image
*texImage
,
425 GLint i
, GLint j
, GLint k
, const void *texel
)
427 const GLfloat
*rgba
= (const GLfloat
*) texel
;
428 GLhalfARB
*dst
= TEXEL_ADDR(GLhalfARB
, texImage
, i
, j
, k
, 1);
429 dst
[0] = _mesa_float_to_half(rgba
[RCOMP
]);
437 * Begin Hardware formats
440 /* MESA_FORMAT_RGBA8888 ******************************************************/
442 /* Fetch texel from 1D, 2D or 3D rgba8888 texture, return 4 GLfloats */
443 static void FETCH(f_rgba8888
)( const struct gl_texture_image
*texImage
,
444 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
446 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
447 texel
[RCOMP
] = UBYTE_TO_FLOAT( (s
>> 24) );
448 texel
[GCOMP
] = UBYTE_TO_FLOAT( (s
>> 16) & 0xff );
449 texel
[BCOMP
] = UBYTE_TO_FLOAT( (s
>> 8) & 0xff );
450 texel
[ACOMP
] = UBYTE_TO_FLOAT( (s
) & 0xff );
456 static void store_texel_rgba8888(struct gl_texture_image
*texImage
,
457 GLint i
, GLint j
, GLint k
, const void *texel
)
459 const GLubyte
*rgba
= (const GLubyte
*) texel
;
460 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
461 *dst
= PACK_COLOR_8888(rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
], rgba
[ACOMP
]);
466 /* MESA_FORMAT_RGBA888_REV ***************************************************/
468 /* Fetch texel from 1D, 2D or 3D abgr8888 texture, return 4 GLchans */
469 static void FETCH(f_rgba8888_rev
)( const struct gl_texture_image
*texImage
,
470 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
472 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
473 texel
[RCOMP
] = UBYTE_TO_FLOAT( (s
) & 0xff );
474 texel
[GCOMP
] = UBYTE_TO_FLOAT( (s
>> 8) & 0xff );
475 texel
[BCOMP
] = UBYTE_TO_FLOAT( (s
>> 16) & 0xff );
476 texel
[ACOMP
] = UBYTE_TO_FLOAT( (s
>> 24) );
480 static void store_texel_rgba8888_rev(struct gl_texture_image
*texImage
,
481 GLint i
, GLint j
, GLint k
, const void *texel
)
483 const GLubyte
*rgba
= (const GLubyte
*) texel
;
484 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
485 *dst
= PACK_COLOR_8888_REV(rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
], rgba
[ACOMP
]);
490 /* MESA_FORMAT_ARGB8888 ******************************************************/
492 /* Fetch texel from 1D, 2D or 3D argb8888 texture, return 4 GLchans */
493 static void FETCH(f_argb8888
)( const struct gl_texture_image
*texImage
,
494 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
496 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
497 texel
[RCOMP
] = UBYTE_TO_FLOAT( (s
>> 16) & 0xff );
498 texel
[GCOMP
] = UBYTE_TO_FLOAT( (s
>> 8) & 0xff );
499 texel
[BCOMP
] = UBYTE_TO_FLOAT( (s
) & 0xff );
500 texel
[ACOMP
] = UBYTE_TO_FLOAT( (s
>> 24) );
504 static void store_texel_argb8888(struct gl_texture_image
*texImage
,
505 GLint i
, GLint j
, GLint k
, const void *texel
)
507 const GLubyte
*rgba
= (const GLubyte
*) texel
;
508 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
509 *dst
= PACK_COLOR_8888(rgba
[ACOMP
], rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
]);
514 /* MESA_FORMAT_ARGB8888_REV **************************************************/
516 /* Fetch texel from 1D, 2D or 3D argb8888_rev texture, return 4 GLfloats */
517 static void FETCH(f_argb8888_rev
)( const struct gl_texture_image
*texImage
,
518 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
520 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
521 texel
[RCOMP
] = UBYTE_TO_FLOAT( (s
>> 8) & 0xff );
522 texel
[GCOMP
] = UBYTE_TO_FLOAT( (s
>> 16) & 0xff );
523 texel
[BCOMP
] = UBYTE_TO_FLOAT( (s
>> 24) );
524 texel
[ACOMP
] = UBYTE_TO_FLOAT( (s
) & 0xff );
528 static void store_texel_argb8888_rev(struct gl_texture_image
*texImage
,
529 GLint i
, GLint j
, GLint k
, const void *texel
)
531 const GLubyte
*rgba
= (const GLubyte
*) texel
;
532 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
533 *dst
= PACK_COLOR_8888(rgba
[BCOMP
], rgba
[GCOMP
], rgba
[RCOMP
], rgba
[ACOMP
]);
538 /* MESA_FORMAT_XRGB8888 ******************************************************/
540 /* Fetch texel from 1D, 2D or 3D xrgb8888 texture, return 4 GLchans */
541 static void FETCH(f_xrgb8888
)( const struct gl_texture_image
*texImage
,
542 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
544 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
545 texel
[RCOMP
] = UBYTE_TO_FLOAT( (s
>> 16) & 0xff );
546 texel
[GCOMP
] = UBYTE_TO_FLOAT( (s
>> 8) & 0xff );
547 texel
[BCOMP
] = UBYTE_TO_FLOAT( (s
) & 0xff );
552 static void store_texel_xrgb8888(struct gl_texture_image
*texImage
,
553 GLint i
, GLint j
, GLint k
, const void *texel
)
555 const GLubyte
*rgba
= (const GLubyte
*) texel
;
556 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
557 *dst
= PACK_COLOR_8888(0xff, rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
]);
562 /* MESA_FORMAT_XRGB8888_REV **************************************************/
564 /* Fetch texel from 1D, 2D or 3D xrgb8888_rev texture, return 4 GLfloats */
565 static void FETCH(f_xrgb8888_rev
)( const struct gl_texture_image
*texImage
,
566 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
568 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
569 texel
[RCOMP
] = UBYTE_TO_FLOAT( (s
>> 8) & 0xff );
570 texel
[GCOMP
] = UBYTE_TO_FLOAT( (s
>> 16) & 0xff );
571 texel
[BCOMP
] = UBYTE_TO_FLOAT( (s
>> 24) );
576 static void store_texel_xrgb8888_rev(struct gl_texture_image
*texImage
,
577 GLint i
, GLint j
, GLint k
, const void *texel
)
579 const GLubyte
*rgba
= (const GLubyte
*) texel
;
580 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
581 *dst
= PACK_COLOR_8888(rgba
[BCOMP
], rgba
[GCOMP
], rgba
[RCOMP
], 0xff);
586 /* MESA_FORMAT_RGB888 ********************************************************/
588 /* Fetch texel from 1D, 2D or 3D rgb888 texture, return 4 GLchans */
589 static void FETCH(f_rgb888
)( const struct gl_texture_image
*texImage
,
590 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
592 const GLubyte
*src
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 3);
593 texel
[RCOMP
] = UBYTE_TO_FLOAT( src
[2] );
594 texel
[GCOMP
] = UBYTE_TO_FLOAT( src
[1] );
595 texel
[BCOMP
] = UBYTE_TO_FLOAT( src
[0] );
600 static void store_texel_rgb888(struct gl_texture_image
*texImage
,
601 GLint i
, GLint j
, GLint k
, const void *texel
)
603 const GLubyte
*rgba
= (const GLubyte
*) texel
;
604 GLubyte
*dst
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 3);
605 dst
[0] = rgba
[BCOMP
];
606 dst
[1] = rgba
[GCOMP
];
607 dst
[2] = rgba
[RCOMP
];
612 /* MESA_FORMAT_BGR888 ********************************************************/
614 /* Fetch texel from 1D, 2D or 3D bgr888 texture, return 4 GLchans */
615 static void FETCH(f_bgr888
)( const struct gl_texture_image
*texImage
,
616 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
618 const GLubyte
*src
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 3);
619 texel
[RCOMP
] = UBYTE_TO_FLOAT( src
[0] );
620 texel
[GCOMP
] = UBYTE_TO_FLOAT( src
[1] );
621 texel
[BCOMP
] = UBYTE_TO_FLOAT( src
[2] );
626 static void store_texel_bgr888(struct gl_texture_image
*texImage
,
627 GLint i
, GLint j
, GLint k
, const void *texel
)
629 const GLubyte
*rgba
= (const GLubyte
*) texel
;
630 GLubyte
*dst
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 3);
631 dst
[0] = rgba
[RCOMP
];
632 dst
[1] = rgba
[GCOMP
];
633 dst
[2] = rgba
[BCOMP
];
638 /* use color expansion like (g << 2) | (g >> 4) (does somewhat random rounding)
639 instead of slow (g << 2) * 255 / 252 (always rounds down) */
641 /* MESA_FORMAT_RGB565 ********************************************************/
643 /* Fetch texel from 1D, 2D or 3D rgb565 texture, return 4 GLchans */
644 static void FETCH(f_rgb565
)( const struct gl_texture_image
*texImage
,
645 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
647 const GLushort
*src
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
648 const GLushort s
= *src
;
649 texel
[RCOMP
] = ((s
>> 11) & 0x1f) * (1.0F
/ 31.0F
);
650 texel
[GCOMP
] = ((s
>> 5 ) & 0x3f) * (1.0F
/ 63.0F
);
651 texel
[BCOMP
] = ((s
) & 0x1f) * (1.0F
/ 31.0F
);
656 static void store_texel_rgb565(struct gl_texture_image
*texImage
,
657 GLint i
, GLint j
, GLint k
, const void *texel
)
659 const GLubyte
*rgba
= (const GLubyte
*) texel
;
660 GLushort
*dst
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
661 *dst
= PACK_COLOR_565(rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
]);
666 /* MESA_FORMAT_RGB565_REV ****************************************************/
668 /* Fetch texel from 1D, 2D or 3D rgb565_rev texture, return 4 GLchans */
669 static void FETCH(f_rgb565_rev
)( const struct gl_texture_image
*texImage
,
670 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
672 const GLushort
*src
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
673 const GLushort s
= (*src
>> 8) | (*src
<< 8); /* byte swap */
674 texel
[RCOMP
] = UBYTE_TO_FLOAT( ((s
>> 8) & 0xf8) | ((s
>> 13) & 0x7) );
675 texel
[GCOMP
] = UBYTE_TO_FLOAT( ((s
>> 3) & 0xfc) | ((s
>> 9) & 0x3) );
676 texel
[BCOMP
] = UBYTE_TO_FLOAT( ((s
<< 3) & 0xf8) | ((s
>> 2) & 0x7) );
681 static void store_texel_rgb565_rev(struct gl_texture_image
*texImage
,
682 GLint i
, GLint j
, GLint k
, const void *texel
)
684 const GLubyte
*rgba
= (const GLubyte
*) texel
;
685 GLushort
*dst
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
686 *dst
= PACK_COLOR_565(rgba
[BCOMP
], rgba
[GCOMP
], rgba
[RCOMP
]);
691 /* MESA_FORMAT_ARGB4444 ******************************************************/
693 /* Fetch texel from 1D, 2D or 3D argb444 texture, return 4 GLchans */
694 static void FETCH(f_argb4444
)( const struct gl_texture_image
*texImage
,
695 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
697 const GLushort
*src
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
698 const GLushort s
= *src
;
699 texel
[RCOMP
] = ((s
>> 8) & 0xf) * (1.0F
/ 15.0F
);
700 texel
[GCOMP
] = ((s
>> 4) & 0xf) * (1.0F
/ 15.0F
);
701 texel
[BCOMP
] = ((s
) & 0xf) * (1.0F
/ 15.0F
);
702 texel
[ACOMP
] = ((s
>> 12) & 0xf) * (1.0F
/ 15.0F
);
706 static void store_texel_argb4444(struct gl_texture_image
*texImage
,
707 GLint i
, GLint j
, GLint k
, const void *texel
)
709 const GLubyte
*rgba
= (const GLubyte
*) texel
;
710 GLushort
*dst
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
711 *dst
= PACK_COLOR_4444(rgba
[ACOMP
], rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
]);
716 /* MESA_FORMAT_ARGB4444_REV **************************************************/
718 /* Fetch texel from 1D, 2D or 3D argb4444_rev texture, return 4 GLchans */
719 static void FETCH(f_argb4444_rev
)( const struct gl_texture_image
*texImage
,
720 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
722 const GLushort s
= *TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
723 texel
[RCOMP
] = ((s
) & 0xf) * (1.0F
/ 15.0F
);
724 texel
[GCOMP
] = ((s
>> 12) & 0xf) * (1.0F
/ 15.0F
);
725 texel
[BCOMP
] = ((s
>> 8) & 0xf) * (1.0F
/ 15.0F
);
726 texel
[ACOMP
] = ((s
>> 4) & 0xf) * (1.0F
/ 15.0F
);
730 static void store_texel_argb4444_rev(struct gl_texture_image
*texImage
,
731 GLint i
, GLint j
, GLint k
, const void *texel
)
733 const GLubyte
*rgba
= (const GLubyte
*) texel
;
734 GLushort
*dst
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
735 *dst
= PACK_COLOR_4444(rgba
[ACOMP
], rgba
[BCOMP
], rgba
[GCOMP
], rgba
[RCOMP
]);
739 /* MESA_FORMAT_RGBA5551 ******************************************************/
741 /* Fetch texel from 1D, 2D or 3D argb1555 texture, return 4 GLchans */
742 static void FETCH(f_rgba5551
)( const struct gl_texture_image
*texImage
,
743 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
745 const GLushort
*src
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
746 const GLushort s
= *src
;
747 texel
[RCOMP
] = ((s
>> 11) & 0x1f) * (1.0F
/ 31.0F
);
748 texel
[GCOMP
] = ((s
>> 6) & 0x1f) * (1.0F
/ 31.0F
);
749 texel
[BCOMP
] = ((s
>> 1) & 0x1f) * (1.0F
/ 31.0F
);
750 texel
[ACOMP
] = ((s
) & 0x01) * 1.0F
;
754 static void store_texel_rgba5551(struct gl_texture_image
*texImage
,
755 GLint i
, GLint j
, GLint k
, const void *texel
)
757 const GLubyte
*rgba
= (const GLubyte
*) texel
;
758 GLushort
*dst
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
759 *dst
= PACK_COLOR_5551(rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
], rgba
[ACOMP
]);
763 /* MESA_FORMAT_ARGB1555 ******************************************************/
765 /* Fetch texel from 1D, 2D or 3D argb1555 texture, return 4 GLchans */
766 static void FETCH(f_argb1555
)( const struct gl_texture_image
*texImage
,
767 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
769 const GLushort
*src
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
770 const GLushort s
= *src
;
771 texel
[RCOMP
] = ((s
>> 10) & 0x1f) * (1.0F
/ 31.0F
);
772 texel
[GCOMP
] = ((s
>> 5) & 0x1f) * (1.0F
/ 31.0F
);
773 texel
[BCOMP
] = ((s
>> 0) & 0x1f) * (1.0F
/ 31.0F
);
774 texel
[ACOMP
] = ((s
>> 15) & 0x01) * 1.0F
;
778 static void store_texel_argb1555(struct gl_texture_image
*texImage
,
779 GLint i
, GLint j
, GLint k
, const void *texel
)
781 const GLubyte
*rgba
= (const GLubyte
*) texel
;
782 GLushort
*dst
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
783 *dst
= PACK_COLOR_1555(rgba
[ACOMP
], rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
]);
788 /* MESA_FORMAT_ARGB1555_REV **************************************************/
790 /* Fetch texel from 1D, 2D or 3D argb1555_rev texture, return 4 GLchans */
791 static void FETCH(f_argb1555_rev
)( const struct gl_texture_image
*texImage
,
792 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
794 const GLushort
*src
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
795 const GLushort s
= (*src
<< 8) | (*src
>> 8); /* byteswap */
796 texel
[RCOMP
] = UBYTE_TO_FLOAT( ((s
>> 7) & 0xf8) | ((s
>> 12) & 0x7) );
797 texel
[GCOMP
] = UBYTE_TO_FLOAT( ((s
>> 2) & 0xf8) | ((s
>> 7) & 0x7) );
798 texel
[BCOMP
] = UBYTE_TO_FLOAT( ((s
<< 3) & 0xf8) | ((s
>> 2) & 0x7) );
799 texel
[ACOMP
] = UBYTE_TO_FLOAT( ((s
>> 15) & 0x01) * 255 );
803 static void store_texel_argb1555_rev(struct gl_texture_image
*texImage
,
804 GLint i
, GLint j
, GLint k
, const void *texel
)
806 const GLubyte
*rgba
= (const GLubyte
*) texel
;
807 GLushort
*dst
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
808 *dst
= PACK_COLOR_1555_REV(rgba
[ACOMP
], rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
]);
813 /* MESA_FORMAT_AL88 **********************************************************/
815 /* Fetch texel from 1D, 2D or 3D al88 texture, return 4 GLchans */
816 static void FETCH(f_al88
)( const struct gl_texture_image
*texImage
,
817 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
819 const GLushort s
= *TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
822 texel
[BCOMP
] = UBYTE_TO_FLOAT( s
& 0xff );
823 texel
[ACOMP
] = UBYTE_TO_FLOAT( s
>> 8 );
827 static void store_texel_al88(struct gl_texture_image
*texImage
,
828 GLint i
, GLint j
, GLint k
, const void *texel
)
830 const GLubyte
*rgba
= (const GLubyte
*) texel
;
831 GLushort
*dst
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
832 *dst
= PACK_COLOR_88(rgba
[ACOMP
], rgba
[RCOMP
]);
837 /* MESA_FORMAT_AL88_REV ******************************************************/
839 /* Fetch texel from 1D, 2D or 3D al88_rev texture, return 4 GLchans */
840 static void FETCH(f_al88_rev
)( const struct gl_texture_image
*texImage
,
841 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
843 const GLushort s
= *TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
846 texel
[BCOMP
] = UBYTE_TO_FLOAT( s
>> 8 );
847 texel
[ACOMP
] = UBYTE_TO_FLOAT( s
& 0xff );
851 static void store_texel_al88_rev(struct gl_texture_image
*texImage
,
852 GLint i
, GLint j
, GLint k
, const void *texel
)
854 const GLubyte
*rgba
= (const GLubyte
*) texel
;
855 GLushort
*dst
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 1);
856 *dst
= PACK_COLOR_88(rgba
[RCOMP
], rgba
[ACOMP
]);
861 /* MESA_FORMAT_AL1616 ********************************************************/
863 /* Fetch texel from 1D, 2D or 3D al1616 texture, return 4 GLchans */
864 static void FETCH(f_al1616
)( const struct gl_texture_image
*texImage
,
865 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
867 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
870 texel
[BCOMP
] = USHORT_TO_FLOAT( s
& 0xffff );
871 texel
[ACOMP
] = USHORT_TO_FLOAT( s
>> 16 );
875 static void store_texel_al1616(struct gl_texture_image
*texImage
,
876 GLint i
, GLint j
, GLint k
, const void *texel
)
878 const GLushort
*rgba
= (const GLushort
*) texel
;
879 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
880 *dst
= PACK_COLOR_1616(rgba
[ACOMP
], rgba
[RCOMP
]);
885 /* MESA_FORMAT_AL1616_REV ****************************************************/
887 /* Fetch texel from 1D, 2D or 3D al1616_rev texture, return 4 GLchans */
888 static void FETCH(f_al1616_rev
)( const struct gl_texture_image
*texImage
,
889 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
891 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
894 texel
[BCOMP
] = USHORT_TO_FLOAT( s
>> 16 );
895 texel
[ACOMP
] = USHORT_TO_FLOAT( s
& 0xffff );
899 static void store_texel_al1616_rev(struct gl_texture_image
*texImage
,
900 GLint i
, GLint j
, GLint k
, const void *texel
)
902 const GLushort
*rgba
= (const GLushort
*) texel
;
903 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
904 *dst
= PACK_COLOR_1616(rgba
[RCOMP
], rgba
[ACOMP
]);
909 /* MESA_FORMAT_RGB332 ********************************************************/
911 /* Fetch texel from 1D, 2D or 3D rgb332 texture, return 4 GLchans */
912 static void FETCH(f_rgb332
)( const struct gl_texture_image
*texImage
,
913 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
915 const GLubyte
*src
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 1);
916 const GLubyte s
= *src
;
917 texel
[RCOMP
] = ((s
>> 5) & 0x7) * (1.0F
/ 7.0F
);
918 texel
[GCOMP
] = ((s
>> 2) & 0x7) * (1.0F
/ 7.0F
);
919 texel
[BCOMP
] = ((s
) & 0x3) * (1.0F
/ 3.0F
);
924 static void store_texel_rgb332(struct gl_texture_image
*texImage
,
925 GLint i
, GLint j
, GLint k
, const void *texel
)
927 const GLubyte
*rgba
= (const GLubyte
*) texel
;
928 GLubyte
*dst
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 1);
929 *dst
= PACK_COLOR_332(rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
]);
934 /* MESA_FORMAT_A8 ************************************************************/
936 /* Fetch texel from 1D, 2D or 3D a8 texture, return 4 GLchans */
937 static void FETCH(f_a8
)( const struct gl_texture_image
*texImage
,
938 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
940 const GLubyte
*src
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 1);
944 texel
[ACOMP
] = UBYTE_TO_FLOAT( src
[0] );
948 static void store_texel_a8(struct gl_texture_image
*texImage
,
949 GLint i
, GLint j
, GLint k
, const void *texel
)
951 const GLubyte
*rgba
= (const GLubyte
*) texel
;
952 GLubyte
*dst
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 1);
958 /* MESA_FORMAT_L8 ************************************************************/
960 /* Fetch texel from 1D, 2D or 3D l8 texture, return 4 GLchans */
961 static void FETCH(f_l8
)( const struct gl_texture_image
*texImage
,
962 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
964 const GLubyte
*src
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 1);
967 texel
[BCOMP
] = UBYTE_TO_FLOAT( src
[0] );
972 static void store_texel_l8(struct gl_texture_image
*texImage
,
973 GLint i
, GLint j
, GLint k
, const void *texel
)
975 const GLubyte
*rgba
= (const GLubyte
*) texel
;
976 GLubyte
*dst
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 1);
982 /* MESA_FORMAT_I8 ************************************************************/
984 /* Fetch texel from 1D, 2D or 3D i8 texture, return 4 GLchans */
985 static void FETCH(f_i8
)( const struct gl_texture_image
*texImage
,
986 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
988 const GLubyte
*src
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 1);
992 texel
[ACOMP
] = UBYTE_TO_FLOAT( src
[0] );
996 static void store_texel_i8(struct gl_texture_image
*texImage
,
997 GLint i
, GLint j
, GLint k
, const void *texel
)
999 const GLubyte
*rgba
= (const GLubyte
*) texel
;
1000 GLubyte
*dst
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 1);
1006 /* MESA_FORMAT_CI8 ***********************************************************/
1008 /* Fetch CI texel from 1D, 2D or 3D ci8 texture, lookup the index in a
1009 * color table, and return 4 GLchans.
1011 static void FETCH(f_ci8
)( const struct gl_texture_image
*texImage
,
1012 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1014 const GLubyte
*src
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 1);
1015 const struct gl_color_table
*palette
;
1017 GET_CURRENT_CONTEXT(ctx
);
1019 if (ctx
->Texture
.SharedPalette
) {
1020 palette
= &ctx
->Texture
.Palette
;
1023 palette
= &texImage
->TexObject
->Palette
;
1025 if (palette
->Size
== 0)
1026 return; /* undefined results */
1028 /* Mask the index against size of palette to avoid going out of bounds */
1029 index
= (*src
) & (palette
->Size
- 1);
1032 const GLfloat
*table
= palette
->TableF
;
1033 switch (palette
->_BaseFormat
) {
1037 texel
[BCOMP
] = 0.0F
;
1038 texel
[ACOMP
] = table
[index
];
1043 texel
[BCOMP
] = table
[index
];
1044 texel
[ACOMP
] = 1.0F
;
1050 texel
[ACOMP
] = table
[index
];
1052 case GL_LUMINANCE_ALPHA
:
1055 texel
[BCOMP
] = table
[index
* 2 + 0];
1056 texel
[ACOMP
] = table
[index
* 2 + 1];
1059 texel
[RCOMP
] = table
[index
* 3 + 0];
1060 texel
[GCOMP
] = table
[index
* 3 + 1];
1061 texel
[BCOMP
] = table
[index
* 3 + 2];
1062 texel
[ACOMP
] = 1.0F
;
1065 texel
[RCOMP
] = table
[index
* 4 + 0];
1066 texel
[GCOMP
] = table
[index
* 4 + 1];
1067 texel
[BCOMP
] = table
[index
* 4 + 2];
1068 texel
[ACOMP
] = table
[index
* 4 + 3];
1071 _mesa_problem(ctx
, "Bad palette format in fetch_texel_ci8");
1078 static void store_texel_ci8(struct gl_texture_image
*texImage
,
1079 GLint i
, GLint j
, GLint k
, const void *texel
)
1081 const GLubyte
*index
= (const GLubyte
*) texel
;
1082 GLubyte
*dst
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 1);
1088 /* Fetch texel from 1D, 2D or 3D srgb8 texture, return 4 GLfloats */
1089 /* Note: component order is same as for MESA_FORMAT_RGB888 */
1090 static void FETCH(srgb8
)(const struct gl_texture_image
*texImage
,
1091 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1093 const GLubyte
*src
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 3);
1094 texel
[RCOMP
] = nonlinear_to_linear(src
[2]);
1095 texel
[GCOMP
] = nonlinear_to_linear(src
[1]);
1096 texel
[BCOMP
] = nonlinear_to_linear(src
[0]);
1097 texel
[ACOMP
] = 1.0F
;
1101 static void store_texel_srgb8(struct gl_texture_image
*texImage
,
1102 GLint i
, GLint j
, GLint k
, const void *texel
)
1104 const GLubyte
*rgba
= (const GLubyte
*) texel
;
1105 GLubyte
*dst
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 3);
1106 dst
[0] = rgba
[BCOMP
]; /* no conversion */
1107 dst
[1] = rgba
[GCOMP
];
1108 dst
[2] = rgba
[RCOMP
];
1112 /* Fetch texel from 1D, 2D or 3D srgba8 texture, return 4 GLfloats */
1113 static void FETCH(srgba8
)(const struct gl_texture_image
*texImage
,
1114 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1116 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1117 texel
[RCOMP
] = nonlinear_to_linear( (s
>> 24) );
1118 texel
[GCOMP
] = nonlinear_to_linear( (s
>> 16) & 0xff );
1119 texel
[BCOMP
] = nonlinear_to_linear( (s
>> 8) & 0xff );
1120 texel
[ACOMP
] = UBYTE_TO_FLOAT( (s
) & 0xff ); /* linear! */
1124 static void store_texel_srgba8(struct gl_texture_image
*texImage
,
1125 GLint i
, GLint j
, GLint k
, const void *texel
)
1127 const GLubyte
*rgba
= (const GLubyte
*) texel
;
1128 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1129 *dst
= PACK_COLOR_8888(rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
], rgba
[ACOMP
]);
1133 /* Fetch texel from 1D, 2D or 3D sargb8 texture, return 4 GLfloats */
1134 static void FETCH(sargb8
)(const struct gl_texture_image
*texImage
,
1135 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1137 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1138 texel
[RCOMP
] = nonlinear_to_linear( (s
>> 16) & 0xff );
1139 texel
[GCOMP
] = nonlinear_to_linear( (s
>> 8) & 0xff );
1140 texel
[BCOMP
] = nonlinear_to_linear( (s
) & 0xff );
1141 texel
[ACOMP
] = UBYTE_TO_FLOAT( (s
>> 24) ); /* linear! */
1145 static void store_texel_sargb8(struct gl_texture_image
*texImage
,
1146 GLint i
, GLint j
, GLint k
, const void *texel
)
1148 const GLubyte
*rgba
= (const GLubyte
*) texel
;
1149 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1150 *dst
= PACK_COLOR_8888(rgba
[ACOMP
], rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
]);
1154 /* Fetch texel from 1D, 2D or 3D sl8 texture, return 4 GLfloats */
1155 static void FETCH(sl8
)(const struct gl_texture_image
*texImage
,
1156 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1158 const GLubyte
*src
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 1);
1161 texel
[BCOMP
] = nonlinear_to_linear(src
[0]);
1162 texel
[ACOMP
] = 1.0F
;
1166 static void store_texel_sl8(struct gl_texture_image
*texImage
,
1167 GLint i
, GLint j
, GLint k
, const void *texel
)
1169 const GLubyte
*rgba
= (const GLubyte
*) texel
;
1170 GLubyte
*dst
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 1);
1171 dst
[0] = rgba
[RCOMP
];
1175 /* Fetch texel from 1D, 2D or 3D sla8 texture, return 4 GLfloats */
1176 static void FETCH(sla8
)(const struct gl_texture_image
*texImage
,
1177 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1179 const GLubyte
*src
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 2);
1182 texel
[BCOMP
] = nonlinear_to_linear(src
[0]);
1183 texel
[ACOMP
] = UBYTE_TO_FLOAT(src
[1]); /* linear */
1187 static void store_texel_sla8(struct gl_texture_image
*texImage
,
1188 GLint i
, GLint j
, GLint k
, const void *texel
)
1190 const GLubyte
*rgba
= (const GLubyte
*) texel
;
1191 GLubyte
*dst
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 2);
1192 dst
[0] = rgba
[RCOMP
];
1193 dst
[1] = rgba
[ACOMP
];
1198 /* MESA_FORMAT_RGBA_INT8 **************************************************/
1201 FETCH(rgba_int8
)(const struct gl_texture_image
*texImage
,
1202 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1204 const GLbyte
*src
= TEXEL_ADDR(GLbyte
, texImage
, i
, j
, k
, 4);
1205 texel
[RCOMP
] = (GLfloat
) src
[0];
1206 texel
[GCOMP
] = (GLfloat
) src
[1];
1207 texel
[BCOMP
] = (GLfloat
) src
[2];
1208 texel
[ACOMP
] = (GLfloat
) src
[3];
1213 store_texel_rgba_int8(struct gl_texture_image
*texImage
,
1214 GLint i
, GLint j
, GLint k
, const void *texel
)
1216 const GLbyte
*rgba
= (const GLbyte
*) texel
;
1217 GLbyte
*dst
= TEXEL_ADDR(GLbyte
, texImage
, i
, j
, k
, 4);
1218 dst
[0] = rgba
[RCOMP
];
1219 dst
[1] = rgba
[GCOMP
];
1220 dst
[2] = rgba
[BCOMP
];
1221 dst
[3] = rgba
[ACOMP
];
1226 /* MESA_FORMAT_RGBA_INT16 **************************************************/
1229 FETCH(rgba_int16
)(const struct gl_texture_image
*texImage
,
1230 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1232 const GLshort
*src
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 4);
1233 texel
[RCOMP
] = (GLfloat
) src
[0];
1234 texel
[GCOMP
] = (GLfloat
) src
[1];
1235 texel
[BCOMP
] = (GLfloat
) src
[2];
1236 texel
[ACOMP
] = (GLfloat
) src
[3];
1241 store_texel_rgba_int16(struct gl_texture_image
*texImage
,
1242 GLint i
, GLint j
, GLint k
, const void *texel
)
1244 const GLshort
*rgba
= (const GLshort
*) texel
;
1245 GLshort
*dst
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 4);
1246 dst
[0] = rgba
[RCOMP
];
1247 dst
[1] = rgba
[GCOMP
];
1248 dst
[2] = rgba
[BCOMP
];
1249 dst
[3] = rgba
[ACOMP
];
1254 /* MESA_FORMAT_RGBA_INT32 **************************************************/
1257 FETCH(rgba_int32
)(const struct gl_texture_image
*texImage
,
1258 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1260 const GLint
*src
= TEXEL_ADDR(GLint
, texImage
, i
, j
, k
, 4);
1261 texel
[RCOMP
] = (GLfloat
) src
[0];
1262 texel
[GCOMP
] = (GLfloat
) src
[1];
1263 texel
[BCOMP
] = (GLfloat
) src
[2];
1264 texel
[ACOMP
] = (GLfloat
) src
[3];
1269 store_texel_rgba_int32(struct gl_texture_image
*texImage
,
1270 GLint i
, GLint j
, GLint k
, const void *texel
)
1272 const GLint
*rgba
= (const GLint
*) texel
;
1273 GLint
*dst
= TEXEL_ADDR(GLint
, texImage
, i
, j
, k
, 4);
1274 dst
[0] = rgba
[RCOMP
];
1275 dst
[1] = rgba
[GCOMP
];
1276 dst
[2] = rgba
[BCOMP
];
1277 dst
[3] = rgba
[ACOMP
];
1282 /* MESA_FORMAT_RGBA_UINT8 **************************************************/
1285 FETCH(rgba_uint8
)(const struct gl_texture_image
*texImage
,
1286 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1288 const GLubyte
*src
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 4);
1289 texel
[RCOMP
] = (GLfloat
) src
[0];
1290 texel
[GCOMP
] = (GLfloat
) src
[1];
1291 texel
[BCOMP
] = (GLfloat
) src
[2];
1292 texel
[ACOMP
] = (GLfloat
) src
[3];
1297 store_texel_rgba_uint8(struct gl_texture_image
*texImage
,
1298 GLint i
, GLint j
, GLint k
, const void *texel
)
1300 const GLubyte
*rgba
= (const GLubyte
*) texel
;
1301 GLubyte
*dst
= TEXEL_ADDR(GLubyte
, texImage
, i
, j
, k
, 4);
1302 dst
[0] = rgba
[RCOMP
];
1303 dst
[1] = rgba
[GCOMP
];
1304 dst
[2] = rgba
[BCOMP
];
1305 dst
[3] = rgba
[ACOMP
];
1310 /* MESA_FORMAT_RGBA_UINT16 **************************************************/
1313 FETCH(rgba_uint16
)(const struct gl_texture_image
*texImage
,
1314 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1316 const GLushort
*src
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 4);
1317 texel
[RCOMP
] = (GLfloat
) src
[0];
1318 texel
[GCOMP
] = (GLfloat
) src
[1];
1319 texel
[BCOMP
] = (GLfloat
) src
[2];
1320 texel
[ACOMP
] = (GLfloat
) src
[3];
1325 store_texel_rgba_uint16(struct gl_texture_image
*texImage
,
1326 GLint i
, GLint j
, GLint k
, const void *texel
)
1328 const GLushort
*rgba
= (const GLushort
*) texel
;
1329 GLushort
*dst
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 4);
1330 dst
[0] = rgba
[RCOMP
];
1331 dst
[1] = rgba
[GCOMP
];
1332 dst
[2] = rgba
[BCOMP
];
1333 dst
[3] = rgba
[ACOMP
];
1338 /* MESA_FORMAT_RGBA_UINT32 **************************************************/
1341 FETCH(rgba_uint32
)(const struct gl_texture_image
*texImage
,
1342 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1344 const GLuint
*src
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 4);
1345 texel
[RCOMP
] = (GLfloat
) src
[0];
1346 texel
[GCOMP
] = (GLfloat
) src
[1];
1347 texel
[BCOMP
] = (GLfloat
) src
[2];
1348 texel
[ACOMP
] = (GLfloat
) src
[3];
1353 store_texel_rgba_uint32(struct gl_texture_image
*texImage
,
1354 GLint i
, GLint j
, GLint k
, const void *texel
)
1356 const GLuint
*rgba
= (const GLuint
*) texel
;
1357 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 4);
1358 dst
[0] = rgba
[RCOMP
];
1359 dst
[1] = rgba
[GCOMP
];
1360 dst
[2] = rgba
[BCOMP
];
1361 dst
[3] = rgba
[ACOMP
];
1366 /* MESA_FORMAT_DUDV8 ********************************************************/
1368 /* this format by definition produces 0,0,0,1 as rgba values,
1369 however we'll return the dudv values as rg and fix up elsewhere */
1370 static void FETCH(dudv8
)(const struct gl_texture_image
*texImage
,
1371 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1373 const GLbyte
*src
= TEXEL_ADDR(GLbyte
, texImage
, i
, j
, k
, 2);
1374 texel
[RCOMP
] = BYTE_TO_FLOAT(src
[0]);
1375 texel
[GCOMP
] = BYTE_TO_FLOAT(src
[1]);
1381 /* MESA_FORMAT_SIGNED_R8 ***********************************************/
1383 static void FETCH(signed_r8
)( const struct gl_texture_image
*texImage
,
1384 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1386 const GLbyte s
= *TEXEL_ADDR(GLbyte
, texImage
, i
, j
, k
, 1);
1387 texel
[RCOMP
] = BYTE_TO_FLOAT_TEX( s
);
1388 texel
[GCOMP
] = 0.0F
;
1389 texel
[BCOMP
] = 0.0F
;
1390 texel
[ACOMP
] = 1.0F
;
1394 static void store_texel_signed_r8(struct gl_texture_image
*texImage
,
1395 GLint i
, GLint j
, GLint k
, const void *texel
)
1397 const GLbyte
*rgba
= (const GLbyte
*) texel
;
1398 GLbyte
*dst
= TEXEL_ADDR(GLbyte
, texImage
, i
, j
, k
, 1);
1404 /* MESA_FORMAT_SIGNED_RG88 ***********************************************/
1406 static void FETCH(signed_rg88
)( const struct gl_texture_image
*texImage
,
1407 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1409 const GLushort s
= *TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 1);
1410 texel
[RCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 8) );
1411 texel
[GCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
& 0xff) );
1412 texel
[BCOMP
] = 0.0F
;
1413 texel
[ACOMP
] = 1.0F
;
1417 static void store_texel_signed_rg88(struct gl_texture_image
*texImage
,
1418 GLint i
, GLint j
, GLint k
, const void *texel
)
1420 const GLbyte
*rg
= (const GLbyte
*) texel
;
1421 GLushort
*dst
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 2);
1422 *dst
= PACK_COLOR_88(rg
[RCOMP
], rg
[GCOMP
]);
1427 /* MESA_FORMAT_SIGNED_RGBX8888 ***********************************************/
1429 static void FETCH(signed_rgbx8888
)( const struct gl_texture_image
*texImage
,
1430 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1432 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1433 texel
[RCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 24) );
1434 texel
[GCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 16) );
1435 texel
[BCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 8) );
1436 texel
[ACOMP
] = 1.0f
;
1440 static void store_texel_signed_rgbx8888(struct gl_texture_image
*texImage
,
1441 GLint i
, GLint j
, GLint k
, const void *texel
)
1443 const GLbyte
*rgba
= (const GLbyte
*) texel
;
1444 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1445 *dst
= PACK_COLOR_8888(rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
], 255);
1450 /* MESA_FORMAT_SIGNED_RGBA8888 ***********************************************/
1452 static void FETCH(signed_rgba8888
)( const struct gl_texture_image
*texImage
,
1453 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1455 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1456 texel
[RCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 24) );
1457 texel
[GCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 16) );
1458 texel
[BCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 8) );
1459 texel
[ACOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
) );
1463 static void store_texel_signed_rgba8888(struct gl_texture_image
*texImage
,
1464 GLint i
, GLint j
, GLint k
, const void *texel
)
1466 const GLbyte
*rgba
= (const GLbyte
*) texel
;
1467 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1468 *dst
= PACK_COLOR_8888(rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
], rgba
[ACOMP
]);
1472 static void FETCH(signed_rgba8888_rev
)( const struct gl_texture_image
*texImage
,
1473 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1475 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1476 texel
[RCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
) );
1477 texel
[GCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 8) );
1478 texel
[BCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 16) );
1479 texel
[ACOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 24) );
1483 static void store_texel_signed_rgba8888_rev(struct gl_texture_image
*texImage
,
1484 GLint i
, GLint j
, GLint k
, const void *texel
)
1486 const GLubyte
*rgba
= (const GLubyte
*) texel
;
1487 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1488 *dst
= PACK_COLOR_8888_REV(rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
], rgba
[ACOMP
]);
1494 /* MESA_FORMAT_SIGNED_R_16 ***********************************************/
1497 FETCH(signed_r_16
)(const struct gl_texture_image
*texImage
,
1498 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1500 const GLshort s
= *TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 1);
1501 texel
[RCOMP
] = SHORT_TO_FLOAT_TEX( s
);
1502 texel
[GCOMP
] = 0.0F
;
1503 texel
[BCOMP
] = 0.0F
;
1504 texel
[ACOMP
] = 1.0F
;
1509 store_texel_signed_r_16(struct gl_texture_image
*texImage
,
1510 GLint i
, GLint j
, GLint k
, const void *texel
)
1512 const GLshort
*rgba
= (const GLshort
*) texel
;
1513 GLshort
*dst
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 1);
1519 /* MESA_FORMAT_SIGNED_RG_16 ***********************************************/
1522 FETCH(signed_rg_16
)(const struct gl_texture_image
*texImage
,
1523 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1525 const GLshort
*s
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 2);
1526 texel
[RCOMP
] = SHORT_TO_FLOAT_TEX( s
[0] );
1527 texel
[GCOMP
] = SHORT_TO_FLOAT_TEX( s
[1] );
1528 texel
[BCOMP
] = 0.0F
;
1529 texel
[ACOMP
] = 1.0F
;
1534 store_texel_signed_rg_16(struct gl_texture_image
*texImage
,
1535 GLint i
, GLint j
, GLint k
, const void *texel
)
1537 const GLshort
*rgba
= (const GLshort
*) texel
;
1538 GLshort
*dst
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 2);
1539 dst
[0] = rgba
[RCOMP
];
1540 dst
[1] = rgba
[GCOMP
];
1545 /* MESA_FORMAT_SIGNED_RGBA_16 ***********************************************/
1548 FETCH(signed_rgb_16
)(const struct gl_texture_image
*texImage
,
1549 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1551 const GLshort
*s
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 3);
1552 texel
[RCOMP
] = SHORT_TO_FLOAT_TEX( s
[0] );
1553 texel
[GCOMP
] = SHORT_TO_FLOAT_TEX( s
[1] );
1554 texel
[BCOMP
] = SHORT_TO_FLOAT_TEX( s
[2] );
1555 texel
[ACOMP
] = 1.0F
;
1560 store_texel_signed_rgb_16(struct gl_texture_image
*texImage
,
1561 GLint i
, GLint j
, GLint k
, const void *texel
)
1563 const GLshort
*rgba
= (const GLshort
*) texel
;
1564 GLshort
*dst
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 3);
1565 dst
[0] = rgba
[RCOMP
];
1566 dst
[1] = rgba
[GCOMP
];
1567 dst
[2] = rgba
[BCOMP
];
1572 /* MESA_FORMAT_SIGNED_RGBA_16 ***********************************************/
1575 FETCH(signed_rgba_16
)(const struct gl_texture_image
*texImage
,
1576 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1578 const GLshort
*s
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 4);
1579 texel
[RCOMP
] = SHORT_TO_FLOAT_TEX( s
[0] );
1580 texel
[GCOMP
] = SHORT_TO_FLOAT_TEX( s
[1] );
1581 texel
[BCOMP
] = SHORT_TO_FLOAT_TEX( s
[2] );
1582 texel
[ACOMP
] = SHORT_TO_FLOAT_TEX( s
[3] );
1587 store_texel_signed_rgba_16(struct gl_texture_image
*texImage
,
1588 GLint i
, GLint j
, GLint k
, const void *texel
)
1590 const GLshort
*rgba
= (const GLshort
*) texel
;
1591 GLshort
*dst
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 4);
1592 dst
[0] = rgba
[RCOMP
];
1593 dst
[1] = rgba
[GCOMP
];
1594 dst
[2] = rgba
[BCOMP
];
1595 dst
[3] = rgba
[ACOMP
];
1601 /* MESA_FORMAT_RGBA_16 ***********************************************/
1604 FETCH(rgba_16
)(const struct gl_texture_image
*texImage
,
1605 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1607 const GLushort
*s
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 4);
1608 texel
[RCOMP
] = USHORT_TO_FLOAT( s
[0] );
1609 texel
[GCOMP
] = USHORT_TO_FLOAT( s
[1] );
1610 texel
[BCOMP
] = USHORT_TO_FLOAT( s
[2] );
1611 texel
[ACOMP
] = USHORT_TO_FLOAT( s
[3] );
1616 store_texel_rgba_16(struct gl_texture_image
*texImage
,
1617 GLint i
, GLint j
, GLint k
, const void *texel
)
1619 const GLushort
*rgba
= (const GLushort
*) texel
;
1620 GLushort
*dst
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 4);
1621 dst
[0] = rgba
[RCOMP
];
1622 dst
[1] = rgba
[GCOMP
];
1623 dst
[2] = rgba
[BCOMP
];
1624 dst
[3] = rgba
[ACOMP
];
1630 /* MESA_FORMAT_YCBCR *********************************************************/
1632 /* Fetch texel from 1D, 2D or 3D ycbcr texture, return 4 GLfloats.
1633 * We convert YCbCr to RGB here.
1635 static void FETCH(f_ycbcr
)( const struct gl_texture_image
*texImage
,
1636 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1638 const GLushort
*src0
= TEXEL_ADDR(GLushort
, texImage
, (i
& ~1), j
, k
, 1); /* even */
1639 const GLushort
*src1
= src0
+ 1; /* odd */
1640 const GLubyte y0
= (*src0
>> 8) & 0xff; /* luminance */
1641 const GLubyte cb
= *src0
& 0xff; /* chroma U */
1642 const GLubyte y1
= (*src1
>> 8) & 0xff; /* luminance */
1643 const GLubyte cr
= *src1
& 0xff; /* chroma V */
1644 const GLubyte y
= (i
& 1) ? y1
: y0
; /* choose even/odd luminance */
1645 GLfloat r
= 1.164F
* (y
- 16) + 1.596F
* (cr
- 128);
1646 GLfloat g
= 1.164F
* (y
- 16) - 0.813F
* (cr
- 128) - 0.391F
* (cb
- 128);
1647 GLfloat b
= 1.164F
* (y
- 16) + 2.018F
* (cb
- 128);
1648 r
*= (1.0F
/ 255.0F
);
1649 g
*= (1.0F
/ 255.0F
);
1650 b
*= (1.0F
/ 255.0F
);
1651 texel
[RCOMP
] = CLAMP(r
, 0.0F
, 1.0F
);
1652 texel
[GCOMP
] = CLAMP(g
, 0.0F
, 1.0F
);
1653 texel
[BCOMP
] = CLAMP(b
, 0.0F
, 1.0F
);
1654 texel
[ACOMP
] = 1.0F
;
1658 static void store_texel_ycbcr(struct gl_texture_image
*texImage
,
1659 GLint i
, GLint j
, GLint k
, const void *texel
)
1671 /* MESA_FORMAT_YCBCR_REV *****************************************************/
1673 /* Fetch texel from 1D, 2D or 3D ycbcr_rev texture, return 4 GLfloats.
1674 * We convert YCbCr to RGB here.
1676 static void FETCH(f_ycbcr_rev
)( const struct gl_texture_image
*texImage
,
1677 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1679 const GLushort
*src0
= TEXEL_ADDR(GLushort
, texImage
, (i
& ~1), j
, k
, 1); /* even */
1680 const GLushort
*src1
= src0
+ 1; /* odd */
1681 const GLubyte y0
= *src0
& 0xff; /* luminance */
1682 const GLubyte cr
= (*src0
>> 8) & 0xff; /* chroma V */
1683 const GLubyte y1
= *src1
& 0xff; /* luminance */
1684 const GLubyte cb
= (*src1
>> 8) & 0xff; /* chroma U */
1685 const GLubyte y
= (i
& 1) ? y1
: y0
; /* choose even/odd luminance */
1686 GLfloat r
= 1.164F
* (y
- 16) + 1.596F
* (cr
- 128);
1687 GLfloat g
= 1.164F
* (y
- 16) - 0.813F
* (cr
- 128) - 0.391F
* (cb
- 128);
1688 GLfloat b
= 1.164F
* (y
- 16) + 2.018F
* (cb
- 128);
1689 r
*= (1.0F
/ 255.0F
);
1690 g
*= (1.0F
/ 255.0F
);
1691 b
*= (1.0F
/ 255.0F
);
1692 texel
[RCOMP
] = CLAMP(r
, 0.0F
, 1.0F
);
1693 texel
[GCOMP
] = CLAMP(g
, 0.0F
, 1.0F
);
1694 texel
[BCOMP
] = CLAMP(b
, 0.0F
, 1.0F
);
1695 texel
[ACOMP
] = 1.0F
;
1699 static void store_texel_ycbcr_rev(struct gl_texture_image
*texImage
,
1700 GLint i
, GLint j
, GLint k
, const void *texel
)
1712 /* MESA_TEXFORMAT_Z24_S8 ***************************************************/
1714 static void FETCH(f_z24_s8
)( const struct gl_texture_image
*texImage
,
1715 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1717 /* only return Z, not stencil data */
1718 const GLuint
*src
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1719 const GLfloat scale
= 1.0F
/ (GLfloat
) 0xffffff;
1720 texel
[0] = ((*src
) >> 8) * scale
;
1721 ASSERT(texImage
->TexFormat
== MESA_FORMAT_Z24_S8
);
1722 ASSERT(texel
[0] >= 0.0F
);
1723 ASSERT(texel
[0] <= 1.0F
);
1727 static void store_texel_z24_s8(struct gl_texture_image
*texImage
,
1728 GLint i
, GLint j
, GLint k
, const void *texel
)
1730 /* only store Z, not stencil */
1731 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1732 GLfloat depth
= *((GLfloat
*) texel
);
1733 GLuint zi
= ((GLuint
) (depth
* 0xffffff)) << 8;
1734 *dst
= zi
| (*dst
& 0xff);
1739 /* MESA_TEXFORMAT_S8_Z24 ***************************************************/
1741 static void FETCH(f_s8_z24
)( const struct gl_texture_image
*texImage
,
1742 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1744 /* only return Z, not stencil data */
1745 const GLuint
*src
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1746 const GLfloat scale
= 1.0F
/ (GLfloat
) 0xffffff;
1747 texel
[0] = ((*src
) & 0x00ffffff) * scale
;
1748 ASSERT(texImage
->TexFormat
== MESA_FORMAT_S8_Z24
);
1749 ASSERT(texel
[0] >= 0.0F
);
1750 ASSERT(texel
[0] <= 1.0F
);
1754 static void store_texel_s8_z24(struct gl_texture_image
*texImage
,
1755 GLint i
, GLint j
, GLint k
, const void *texel
)
1757 /* only store Z, not stencil */
1758 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1759 GLfloat depth
= *((GLfloat
*) texel
);
1760 GLuint zi
= (GLuint
) (depth
* 0xffffff);
1761 *dst
= zi
| (*dst
& 0xff000000);