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_DUDV8 ********************************************************/
1200 /* this format by definition produces 0,0,0,1 as rgba values,
1201 however we'll return the dudv values as rg and fix up elsewhere */
1202 static void FETCH(dudv8
)(const struct gl_texture_image
*texImage
,
1203 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1205 const GLbyte
*src
= TEXEL_ADDR(GLbyte
, texImage
, i
, j
, k
, 2);
1206 texel
[RCOMP
] = BYTE_TO_FLOAT(src
[0]);
1207 texel
[GCOMP
] = BYTE_TO_FLOAT(src
[1]);
1213 /* MESA_FORMAT_SIGNED_R8 ***********************************************/
1215 static void FETCH(signed_r8
)( const struct gl_texture_image
*texImage
,
1216 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1218 const GLbyte s
= *TEXEL_ADDR(GLbyte
, texImage
, i
, j
, k
, 1);
1219 texel
[RCOMP
] = BYTE_TO_FLOAT_TEX( s
);
1220 texel
[GCOMP
] = 0.0F
;
1221 texel
[BCOMP
] = 0.0F
;
1222 texel
[ACOMP
] = 1.0F
;
1226 static void store_texel_signed_r8(struct gl_texture_image
*texImage
,
1227 GLint i
, GLint j
, GLint k
, const void *texel
)
1229 const GLbyte
*rgba
= (const GLbyte
*) texel
;
1230 GLbyte
*dst
= TEXEL_ADDR(GLbyte
, texImage
, i
, j
, k
, 1);
1236 /* MESA_FORMAT_SIGNED_RG88 ***********************************************/
1238 static void FETCH(signed_rg88
)( const struct gl_texture_image
*texImage
,
1239 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1241 const GLushort s
= *TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 1);
1242 texel
[RCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 8) );
1243 texel
[GCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
& 0xff) );
1244 texel
[BCOMP
] = 0.0F
;
1245 texel
[ACOMP
] = 1.0F
;
1249 static void store_texel_signed_rg88(struct gl_texture_image
*texImage
,
1250 GLint i
, GLint j
, GLint k
, const void *texel
)
1252 const GLbyte
*rg
= (const GLbyte
*) texel
;
1253 GLushort
*dst
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 2);
1254 *dst
= PACK_COLOR_88(rg
[RCOMP
], rg
[GCOMP
]);
1259 /* MESA_FORMAT_SIGNED_RGBX8888 ***********************************************/
1261 static void FETCH(signed_rgbx8888
)( const struct gl_texture_image
*texImage
,
1262 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1264 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1265 texel
[RCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 24) );
1266 texel
[GCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 16) );
1267 texel
[BCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 8) );
1268 texel
[ACOMP
] = 1.0f
;
1272 static void store_texel_signed_rgbx8888(struct gl_texture_image
*texImage
,
1273 GLint i
, GLint j
, GLint k
, const void *texel
)
1275 const GLbyte
*rgba
= (const GLbyte
*) texel
;
1276 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1277 *dst
= PACK_COLOR_8888(rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
], 255);
1282 /* MESA_FORMAT_SIGNED_RGBA8888 ***********************************************/
1284 static void FETCH(signed_rgba8888
)( const struct gl_texture_image
*texImage
,
1285 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1287 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1288 texel
[RCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 24) );
1289 texel
[GCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 16) );
1290 texel
[BCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 8) );
1291 texel
[ACOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
) );
1295 static void store_texel_signed_rgba8888(struct gl_texture_image
*texImage
,
1296 GLint i
, GLint j
, GLint k
, const void *texel
)
1298 const GLbyte
*rgba
= (const GLbyte
*) texel
;
1299 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1300 *dst
= PACK_COLOR_8888(rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
], rgba
[ACOMP
]);
1304 static void FETCH(signed_rgba8888_rev
)( const struct gl_texture_image
*texImage
,
1305 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1307 const GLuint s
= *TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1308 texel
[RCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
) );
1309 texel
[GCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 8) );
1310 texel
[BCOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 16) );
1311 texel
[ACOMP
] = BYTE_TO_FLOAT_TEX( (GLbyte
) (s
>> 24) );
1315 static void store_texel_signed_rgba8888_rev(struct gl_texture_image
*texImage
,
1316 GLint i
, GLint j
, GLint k
, const void *texel
)
1318 const GLubyte
*rgba
= (const GLubyte
*) texel
;
1319 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1320 *dst
= PACK_COLOR_8888_REV(rgba
[RCOMP
], rgba
[GCOMP
], rgba
[BCOMP
], rgba
[ACOMP
]);
1326 /* MESA_FORMAT_SIGNED_R_16 ***********************************************/
1329 FETCH(signed_r_16
)(const struct gl_texture_image
*texImage
,
1330 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1332 const GLshort s
= *TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 1);
1333 texel
[RCOMP
] = SHORT_TO_FLOAT_TEX( s
);
1334 texel
[GCOMP
] = 0.0F
;
1335 texel
[BCOMP
] = 0.0F
;
1336 texel
[ACOMP
] = 1.0F
;
1341 store_texel_signed_r_16(struct gl_texture_image
*texImage
,
1342 GLint i
, GLint j
, GLint k
, const void *texel
)
1344 const GLshort
*rgba
= (const GLshort
*) texel
;
1345 GLshort
*dst
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 1);
1351 /* MESA_FORMAT_SIGNED_RG_16 ***********************************************/
1354 FETCH(signed_rg_16
)(const struct gl_texture_image
*texImage
,
1355 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1357 const GLshort
*s
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 2);
1358 texel
[RCOMP
] = SHORT_TO_FLOAT_TEX( s
[0] );
1359 texel
[GCOMP
] = SHORT_TO_FLOAT_TEX( s
[1] );
1360 texel
[BCOMP
] = 0.0F
;
1361 texel
[ACOMP
] = 1.0F
;
1366 store_texel_signed_rg_16(struct gl_texture_image
*texImage
,
1367 GLint i
, GLint j
, GLint k
, const void *texel
)
1369 const GLshort
*rgba
= (const GLshort
*) texel
;
1370 GLshort
*dst
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 2);
1371 dst
[0] = rgba
[RCOMP
];
1372 dst
[1] = rgba
[GCOMP
];
1377 /* MESA_FORMAT_SIGNED_RGBA_16 ***********************************************/
1380 FETCH(signed_rgb_16
)(const struct gl_texture_image
*texImage
,
1381 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1383 const GLshort
*s
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 3);
1384 texel
[RCOMP
] = SHORT_TO_FLOAT_TEX( s
[0] );
1385 texel
[GCOMP
] = SHORT_TO_FLOAT_TEX( s
[1] );
1386 texel
[BCOMP
] = SHORT_TO_FLOAT_TEX( s
[3] );
1387 texel
[ACOMP
] = 1.0F
;
1392 store_texel_signed_rgb_16(struct gl_texture_image
*texImage
,
1393 GLint i
, GLint j
, GLint k
, const void *texel
)
1395 const GLshort
*rgba
= (const GLshort
*) texel
;
1396 GLshort
*dst
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 3);
1397 dst
[0] = rgba
[RCOMP
];
1398 dst
[1] = rgba
[GCOMP
];
1399 dst
[2] = rgba
[BCOMP
];
1404 /* MESA_FORMAT_SIGNED_RGB_16 ***********************************************/
1407 FETCH(signed_rgba_16
)(const struct gl_texture_image
*texImage
,
1408 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1410 const GLshort
*s
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 4);
1411 texel
[RCOMP
] = SHORT_TO_FLOAT_TEX( s
[0] );
1412 texel
[GCOMP
] = SHORT_TO_FLOAT_TEX( s
[1] );
1413 texel
[BCOMP
] = SHORT_TO_FLOAT_TEX( s
[3] );
1414 texel
[ACOMP
] = SHORT_TO_FLOAT_TEX( s
[4] );
1419 store_texel_signed_rgba_16(struct gl_texture_image
*texImage
,
1420 GLint i
, GLint j
, GLint k
, const void *texel
)
1422 const GLshort
*rgba
= (const GLshort
*) texel
;
1423 GLshort
*dst
= TEXEL_ADDR(GLshort
, texImage
, i
, j
, k
, 4);
1424 dst
[0] = rgba
[RCOMP
];
1425 dst
[1] = rgba
[GCOMP
];
1426 dst
[2] = rgba
[BCOMP
];
1427 dst
[3] = rgba
[ACOMP
];
1433 /* MESA_FORMAT_RGBA_16 ***********************************************/
1436 FETCH(rgba_16
)(const struct gl_texture_image
*texImage
,
1437 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1439 const GLushort
*s
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 4);
1440 texel
[RCOMP
] = USHORT_TO_FLOAT( s
[0] );
1441 texel
[GCOMP
] = USHORT_TO_FLOAT( s
[1] );
1442 texel
[BCOMP
] = USHORT_TO_FLOAT( s
[2] );
1443 texel
[ACOMP
] = USHORT_TO_FLOAT( s
[3] );
1448 store_texel_rgba_16(struct gl_texture_image
*texImage
,
1449 GLint i
, GLint j
, GLint k
, const void *texel
)
1451 const GLushort
*rgba
= (const GLushort
*) texel
;
1452 GLushort
*dst
= TEXEL_ADDR(GLushort
, texImage
, i
, j
, k
, 4);
1453 dst
[0] = rgba
[RCOMP
];
1454 dst
[1] = rgba
[GCOMP
];
1455 dst
[2] = rgba
[BCOMP
];
1456 dst
[3] = rgba
[ACOMP
];
1462 /* MESA_FORMAT_YCBCR *********************************************************/
1464 /* Fetch texel from 1D, 2D or 3D ycbcr texture, return 4 GLfloats.
1465 * We convert YCbCr to RGB here.
1467 static void FETCH(f_ycbcr
)( const struct gl_texture_image
*texImage
,
1468 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1470 const GLushort
*src0
= TEXEL_ADDR(GLushort
, texImage
, (i
& ~1), j
, k
, 1); /* even */
1471 const GLushort
*src1
= src0
+ 1; /* odd */
1472 const GLubyte y0
= (*src0
>> 8) & 0xff; /* luminance */
1473 const GLubyte cb
= *src0
& 0xff; /* chroma U */
1474 const GLubyte y1
= (*src1
>> 8) & 0xff; /* luminance */
1475 const GLubyte cr
= *src1
& 0xff; /* chroma V */
1476 const GLubyte y
= (i
& 1) ? y1
: y0
; /* choose even/odd luminance */
1477 GLfloat r
= 1.164F
* (y
- 16) + 1.596F
* (cr
- 128);
1478 GLfloat g
= 1.164F
* (y
- 16) - 0.813F
* (cr
- 128) - 0.391F
* (cb
- 128);
1479 GLfloat b
= 1.164F
* (y
- 16) + 2.018F
* (cb
- 128);
1480 r
*= (1.0F
/ 255.0F
);
1481 g
*= (1.0F
/ 255.0F
);
1482 b
*= (1.0F
/ 255.0F
);
1483 texel
[RCOMP
] = CLAMP(r
, 0.0F
, 1.0F
);
1484 texel
[GCOMP
] = CLAMP(g
, 0.0F
, 1.0F
);
1485 texel
[BCOMP
] = CLAMP(b
, 0.0F
, 1.0F
);
1486 texel
[ACOMP
] = 1.0F
;
1490 static void store_texel_ycbcr(struct gl_texture_image
*texImage
,
1491 GLint i
, GLint j
, GLint k
, const void *texel
)
1503 /* MESA_FORMAT_YCBCR_REV *****************************************************/
1505 /* Fetch texel from 1D, 2D or 3D ycbcr_rev texture, return 4 GLfloats.
1506 * We convert YCbCr to RGB here.
1508 static void FETCH(f_ycbcr_rev
)( const struct gl_texture_image
*texImage
,
1509 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1511 const GLushort
*src0
= TEXEL_ADDR(GLushort
, texImage
, (i
& ~1), j
, k
, 1); /* even */
1512 const GLushort
*src1
= src0
+ 1; /* odd */
1513 const GLubyte y0
= *src0
& 0xff; /* luminance */
1514 const GLubyte cr
= (*src0
>> 8) & 0xff; /* chroma V */
1515 const GLubyte y1
= *src1
& 0xff; /* luminance */
1516 const GLubyte cb
= (*src1
>> 8) & 0xff; /* chroma U */
1517 const GLubyte y
= (i
& 1) ? y1
: y0
; /* choose even/odd luminance */
1518 GLfloat r
= 1.164F
* (y
- 16) + 1.596F
* (cr
- 128);
1519 GLfloat g
= 1.164F
* (y
- 16) - 0.813F
* (cr
- 128) - 0.391F
* (cb
- 128);
1520 GLfloat b
= 1.164F
* (y
- 16) + 2.018F
* (cb
- 128);
1521 r
*= (1.0F
/ 255.0F
);
1522 g
*= (1.0F
/ 255.0F
);
1523 b
*= (1.0F
/ 255.0F
);
1524 texel
[RCOMP
] = CLAMP(r
, 0.0F
, 1.0F
);
1525 texel
[GCOMP
] = CLAMP(g
, 0.0F
, 1.0F
);
1526 texel
[BCOMP
] = CLAMP(b
, 0.0F
, 1.0F
);
1527 texel
[ACOMP
] = 1.0F
;
1531 static void store_texel_ycbcr_rev(struct gl_texture_image
*texImage
,
1532 GLint i
, GLint j
, GLint k
, const void *texel
)
1544 /* MESA_TEXFORMAT_Z24_S8 ***************************************************/
1546 static void FETCH(f_z24_s8
)( const struct gl_texture_image
*texImage
,
1547 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1549 /* only return Z, not stencil data */
1550 const GLuint
*src
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1551 const GLfloat scale
= 1.0F
/ (GLfloat
) 0xffffff;
1552 texel
[0] = ((*src
) >> 8) * scale
;
1553 ASSERT(texImage
->TexFormat
== MESA_FORMAT_Z24_S8
);
1554 ASSERT(texel
[0] >= 0.0F
);
1555 ASSERT(texel
[0] <= 1.0F
);
1559 static void store_texel_z24_s8(struct gl_texture_image
*texImage
,
1560 GLint i
, GLint j
, GLint k
, const void *texel
)
1562 /* only store Z, not stencil */
1563 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1564 GLfloat depth
= *((GLfloat
*) texel
);
1565 GLuint zi
= ((GLuint
) (depth
* 0xffffff)) << 8;
1566 *dst
= zi
| (*dst
& 0xff);
1571 /* MESA_TEXFORMAT_S8_Z24 ***************************************************/
1573 static void FETCH(f_s8_z24
)( const struct gl_texture_image
*texImage
,
1574 GLint i
, GLint j
, GLint k
, GLfloat
*texel
)
1576 /* only return Z, not stencil data */
1577 const GLuint
*src
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1578 const GLfloat scale
= 1.0F
/ (GLfloat
) 0xffffff;
1579 texel
[0] = ((*src
) & 0x00ffffff) * scale
;
1580 ASSERT(texImage
->TexFormat
== MESA_FORMAT_S8_Z24
);
1581 ASSERT(texel
[0] >= 0.0F
);
1582 ASSERT(texel
[0] <= 1.0F
);
1586 static void store_texel_s8_z24(struct gl_texture_image
*texImage
,
1587 GLint i
, GLint j
, GLint k
, const void *texel
)
1589 /* only store Z, not stencil */
1590 GLuint
*dst
= TEXEL_ADDR(GLuint
, texImage
, i
, j
, k
, 1);
1591 GLfloat depth
= *((GLfloat
*) texel
);
1592 GLuint zi
= (GLuint
) (depth
* 0xffffff);
1593 *dst
= zi
| (*dst
& 0xff000000);