• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Mesa 3-D graphics library
3  *
4  * Copyright (C) 1999-2008  Brian Paul   All Rights Reserved.
5  * Copyright (c) 2009  VMware, Inc.
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a
8  * copy of this software and associated documentation files (the "Software"),
9  * to deal in the Software without restriction, including without limitation
10  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11  * and/or sell copies of the Software, and to permit persons to whom the
12  * Software is furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included
15  * in all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
20  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23  * OTHER DEALINGS IN THE SOFTWARE.
24  */
25 
26 
27 /**
28  * \file s_texfetch.c
29  *
30  * Texel fetch/store functions
31  *
32  * \author Gareth Hughes
33  */
34 
35 
36 #include "main/macros.h"
37 #include "main/texcompress.h"
38 #include "main/texcompress_fxt1.h"
39 #include "main/texcompress_s3tc.h"
40 #include "main/texcompress_rgtc.h"
41 #include "main/texcompress_etc.h"
42 #include "main/teximage.h"
43 #include "main/samplerobj.h"
44 #include "s_context.h"
45 #include "s_texfetch.h"
46 #include "util/format_rgb9e5.h"
47 #include "util/format_r11g11b10f.h"
48 #include "util/format_srgb.h"
49 
50 
51 /* Texel fetch routines for all supported formats
52  */
53 #define DIM 1
54 #include "s_texfetch_tmp.h"
55 
56 #define DIM 2
57 #include "s_texfetch_tmp.h"
58 
59 #define DIM 3
60 #include "s_texfetch_tmp.h"
61 
62 
63 /**
64  * All compressed texture texel fetching is done though this function.
65  * Basically just call a core-Mesa texel fetch function.
66  */
67 static void
fetch_compressed(const struct swrast_texture_image * swImage,GLint i,GLint j,GLint k,GLfloat * texel)68 fetch_compressed(const struct swrast_texture_image *swImage,
69                  GLint i, GLint j, GLint k, GLfloat *texel)
70 {
71    /* The FetchCompressedTexel function takes an integer pixel rowstride,
72     * while the image's rowstride is bytes per row of blocks.
73     */
74    GLuint bw, bh;
75    GLuint texelBytes = _mesa_get_format_bytes(swImage->Base.TexFormat);
76    _mesa_get_format_block_size(swImage->Base.TexFormat, &bw, &bh);
77    assert(swImage->RowStride * bw % texelBytes == 0);
78 
79    swImage->FetchCompressedTexel(swImage->ImageSlices[k],
80                                  swImage->RowStride * bw / texelBytes,
81                                  i, j, texel);
82 }
83 
84 
85 
86 /**
87  * Null texel fetch function.
88  *
89  * Have to have this so the FetchTexel function pointer is never NULL.
90  */
fetch_null_texelf(const struct swrast_texture_image * texImage,GLint i,GLint j,GLint k,GLfloat * texel)91 static void fetch_null_texelf( const struct swrast_texture_image *texImage,
92                                GLint i, GLint j, GLint k, GLfloat *texel )
93 {
94    (void) texImage; (void) i; (void) j; (void) k;
95    texel[RCOMP] = 0.0;
96    texel[GCOMP] = 0.0;
97    texel[BCOMP] = 0.0;
98    texel[ACOMP] = 0.0;
99    _mesa_warning(NULL, "fetch_null_texelf() called!");
100 }
101 
102 
103 #define FETCH_FUNCS(NAME)       \
104    {                            \
105       MESA_FORMAT_ ## NAME,     \
106       fetch_texel_1d_ ## NAME,  \
107       fetch_texel_2d_ ## NAME,  \
108       fetch_texel_3d_ ## NAME,  \
109    }
110 
111 #define FETCH_NULL(NAME)        \
112    {                            \
113       MESA_FORMAT_ ## NAME,     \
114       NULL,                     \
115       NULL,                     \
116       NULL                      \
117    }
118 
119 #define FETCH_COMPRESSED(NAME)  \
120    {                            \
121       MESA_FORMAT_ ## NAME,     \
122       fetch_compressed,         \
123       fetch_compressed,         \
124       fetch_compressed          \
125    }
126 
127 /**
128  * Table to map MESA_FORMAT_ to texel fetch/store funcs.
129  */
130 static struct {
131    mesa_format Name;
132    FetchTexelFunc Fetch1D;
133    FetchTexelFunc Fetch2D;
134    FetchTexelFunc Fetch3D;
135 }
136 texfetch_funcs[] =
137 {
138    {
139       MESA_FORMAT_NONE,
140       fetch_null_texelf,
141       fetch_null_texelf,
142       fetch_null_texelf
143    },
144 
145    /* Packed unorm formats */
146    FETCH_FUNCS(A8B8G8R8_UNORM),
147    FETCH_FUNCS(X8B8G8R8_UNORM),
148    FETCH_FUNCS(R8G8B8A8_UNORM),
149    FETCH_FUNCS(R8G8B8X8_UNORM),
150    FETCH_FUNCS(B8G8R8A8_UNORM),
151    FETCH_FUNCS(B8G8R8X8_UNORM),
152    FETCH_FUNCS(A8R8G8B8_UNORM),
153    FETCH_FUNCS(X8R8G8B8_UNORM),
154    FETCH_FUNCS(L16A16_UNORM),
155    FETCH_FUNCS(A16L16_UNORM),
156    FETCH_FUNCS(B5G6R5_UNORM),
157    FETCH_FUNCS(R5G6B5_UNORM),
158    FETCH_FUNCS(B4G4R4A4_UNORM),
159    FETCH_NULL(B4G4R4X4_UNORM),
160    FETCH_FUNCS(A4R4G4B4_UNORM),
161    FETCH_FUNCS(A1B5G5R5_UNORM),
162    FETCH_NULL(X1B5G5R5_UNORM),
163    FETCH_FUNCS(B5G5R5A1_UNORM),
164    FETCH_NULL(B5G5R5X1_UNORM),
165    FETCH_FUNCS(A1R5G5B5_UNORM),
166    FETCH_FUNCS(L8A8_UNORM),
167    FETCH_FUNCS(A8L8_UNORM),
168    FETCH_FUNCS(R8G8_UNORM),
169    FETCH_FUNCS(G8R8_UNORM),
170    FETCH_FUNCS(L4A4_UNORM),
171    FETCH_FUNCS(B2G3R3_UNORM),
172    FETCH_FUNCS(R16G16_UNORM),
173    FETCH_FUNCS(G16R16_UNORM),
174    FETCH_FUNCS(B10G10R10A2_UNORM),
175    FETCH_NULL(B10G10R10X2_UNORM),
176    FETCH_FUNCS(R10G10B10A2_UNORM),
177    FETCH_NULL(R10G10B10X2_UNORM),
178 
179    FETCH_FUNCS(S8_UINT_Z24_UNORM),
180    {
181       MESA_FORMAT_X8_UINT_Z24_UNORM,
182       fetch_texel_1d_S8_UINT_Z24_UNORM,
183       fetch_texel_2d_S8_UINT_Z24_UNORM,
184       fetch_texel_3d_S8_UINT_Z24_UNORM
185    },
186    FETCH_FUNCS(Z24_UNORM_S8_UINT),
187    {
188       MESA_FORMAT_Z24_UNORM_X8_UINT,
189       fetch_texel_1d_Z24_UNORM_S8_UINT,
190       fetch_texel_2d_Z24_UNORM_S8_UINT,
191       fetch_texel_3d_Z24_UNORM_S8_UINT
192    },
193    FETCH_NULL(R3G3B2_UNORM),
194    FETCH_NULL(A4B4G4R4_UNORM),
195    FETCH_NULL(R4G4B4A4_UNORM),
196    FETCH_NULL(R5G5B5A1_UNORM),
197    FETCH_NULL(A2B10G10R10_UNORM),
198    FETCH_NULL(A2R10G10B10_UNORM),
199 
200    FETCH_FUNCS(YCBCR),
201    FETCH_FUNCS(YCBCR_REV),
202 
203    /* Array unorm formats */
204    FETCH_FUNCS(A_UNORM8),
205    FETCH_FUNCS(A_UNORM16),
206    FETCH_FUNCS(L_UNORM8),
207    FETCH_FUNCS(L_UNORM16),
208    FETCH_FUNCS(I_UNORM8),
209    FETCH_FUNCS(I_UNORM16),
210    FETCH_FUNCS(R_UNORM8),
211    FETCH_FUNCS(R_UNORM16),
212    FETCH_FUNCS(BGR_UNORM8),
213    FETCH_FUNCS(RGB_UNORM8),
214    FETCH_FUNCS(RGBA_UNORM16),
215    FETCH_FUNCS(RGBX_UNORM16),
216    FETCH_FUNCS(Z_UNORM16),
217    FETCH_FUNCS(Z_UNORM32),
218    FETCH_NULL(S_UINT8),
219 
220    /* Packed signed/normalized formats */
221    FETCH_FUNCS(A8B8G8R8_SNORM),
222    FETCH_FUNCS(X8B8G8R8_SNORM),
223    FETCH_FUNCS(R8G8B8A8_SNORM),
224    FETCH_NULL(R8G8B8X8_SNORM),
225    FETCH_FUNCS(R16G16_SNORM),
226    FETCH_NULL(G16R16_SNORM),
227    FETCH_FUNCS(R8G8_SNORM),
228    FETCH_NULL(G8R8_SNORM),
229    FETCH_FUNCS(L8A8_SNORM),
230    FETCH_FUNCS(A8L8_SNORM),
231 
232    /* Array signed/normalized formats */
233    FETCH_FUNCS(A_SNORM8),
234    FETCH_FUNCS(A_SNORM16),
235    FETCH_FUNCS(L_SNORM8),
236    FETCH_FUNCS(L_SNORM16),
237    FETCH_FUNCS(I_SNORM8),
238    FETCH_FUNCS(I_SNORM16),
239    FETCH_FUNCS(R_SNORM8),
240    FETCH_FUNCS(R_SNORM16),
241    FETCH_FUNCS(LA_SNORM16),
242    FETCH_FUNCS(RGB_SNORM16),
243    FETCH_FUNCS(RGBA_SNORM16),
244    FETCH_NULL(RGBX_SNORM16),
245 
246    /* Packed sRGB formats */
247    FETCH_FUNCS(A8B8G8R8_SRGB),
248    FETCH_FUNCS(B8G8R8A8_SRGB),
249    FETCH_FUNCS(A8R8G8B8_SRGB),
250    FETCH_NULL(B8G8R8X8_SRGB),
251    FETCH_NULL(X8R8G8B8_SRGB),
252    FETCH_FUNCS(R8G8B8A8_SRGB),
253    FETCH_FUNCS(R8G8B8X8_SRGB),
254    FETCH_FUNCS(X8B8G8R8_SRGB),
255    FETCH_FUNCS(L8A8_SRGB),
256    FETCH_FUNCS(A8L8_SRGB),
257 
258    /* Array sRGB formats */
259    FETCH_FUNCS(L_SRGB8),
260    FETCH_FUNCS(BGR_SRGB8),
261 
262    /* Packed float formats */
263    FETCH_FUNCS(R9G9B9E5_FLOAT),
264    FETCH_FUNCS(R11G11B10_FLOAT),
265    FETCH_FUNCS(Z32_FLOAT_S8X24_UINT),
266 
267    /* Array float formats */
268    FETCH_FUNCS(A_FLOAT16),
269    FETCH_FUNCS(A_FLOAT32),
270    FETCH_FUNCS(L_FLOAT16),
271    FETCH_FUNCS(L_FLOAT32),
272    FETCH_FUNCS(LA_FLOAT16),
273    FETCH_FUNCS(LA_FLOAT32),
274    FETCH_FUNCS(I_FLOAT16),
275    FETCH_FUNCS(I_FLOAT32),
276    FETCH_FUNCS(R_FLOAT16),
277    FETCH_FUNCS(R_FLOAT32),
278    FETCH_FUNCS(RG_FLOAT16),
279    FETCH_FUNCS(RG_FLOAT32),
280    FETCH_FUNCS(RGB_FLOAT16),
281    FETCH_FUNCS(RGB_FLOAT32),
282    FETCH_FUNCS(RGBA_FLOAT16),
283    FETCH_FUNCS(RGBA_FLOAT32),
284    FETCH_FUNCS(RGBX_FLOAT16),
285    FETCH_FUNCS(RGBX_FLOAT32),
286    {
287       MESA_FORMAT_Z_FLOAT32,
288       fetch_texel_1d_R_FLOAT32, /* Reuse the R32F functions. */
289       fetch_texel_2d_R_FLOAT32,
290       fetch_texel_3d_R_FLOAT32
291    },
292 
293    /* Packed signed/unsigned non-normalized integer formats */
294    FETCH_NULL(A8B8G8R8_UINT),
295    FETCH_NULL(A8R8G8B8_UINT),
296    FETCH_NULL(R8G8B8A8_UINT),
297    FETCH_NULL(B8G8R8A8_UINT),
298    FETCH_NULL(B10G10R10A2_UINT),
299    FETCH_NULL(R10G10B10A2_UINT),
300    FETCH_NULL(A2B10G10R10_UINT),
301    FETCH_NULL(A2R10G10B10_UINT),
302    FETCH_NULL(B5G6R5_UINT),
303    FETCH_NULL(R5G6B5_UINT),
304    FETCH_NULL(B2G3R3_UINT),
305    FETCH_NULL(R3G3B2_UINT),
306    FETCH_NULL(A4B4G4R4_UINT),
307    FETCH_NULL(R4G4B4A4_UINT),
308    FETCH_NULL(B4G4R4A4_UINT),
309    FETCH_NULL(A4R4G4B4_UINT),
310    FETCH_NULL(A1B5G5R5_UINT),
311    FETCH_NULL(B5G5R5A1_UINT),
312    FETCH_NULL(A1R5G5B5_UINT),
313    FETCH_NULL(R5G5B5A1_UINT),
314 
315    /* Array signed/unsigned non-normalized integer formats */
316    FETCH_NULL(A_UINT8),
317    FETCH_NULL(A_UINT16),
318    FETCH_NULL(A_UINT32),
319    FETCH_NULL(A_SINT8),
320    FETCH_NULL(A_SINT16),
321    FETCH_NULL(A_SINT32),
322    FETCH_NULL(I_UINT8),
323    FETCH_NULL(I_UINT16),
324    FETCH_NULL(I_UINT32),
325    FETCH_NULL(I_SINT8),
326    FETCH_NULL(I_SINT16),
327    FETCH_NULL(I_SINT32),
328    FETCH_NULL(L_UINT8),
329    FETCH_NULL(L_UINT16),
330    FETCH_NULL(L_UINT32),
331    FETCH_NULL(L_SINT8),
332    FETCH_NULL(L_SINT16),
333    FETCH_NULL(L_SINT32),
334    FETCH_NULL(LA_UINT8),
335    FETCH_NULL(LA_UINT16),
336    FETCH_NULL(LA_UINT32),
337    FETCH_NULL(LA_SINT8),
338    FETCH_NULL(LA_SINT16),
339    FETCH_NULL(LA_SINT32),
340    FETCH_NULL(R_UINT8),
341    FETCH_NULL(R_UINT16),
342    FETCH_NULL(R_UINT32),
343    FETCH_NULL(R_SINT8),
344    FETCH_NULL(R_SINT16),
345    FETCH_NULL(R_SINT32),
346    FETCH_NULL(RG_UINT8),
347    FETCH_NULL(RG_UINT16),
348    FETCH_NULL(RG_UINT32),
349    FETCH_NULL(RG_SINT8),
350    FETCH_NULL(RG_SINT16),
351    FETCH_NULL(RG_SINT32),
352    FETCH_NULL(RGB_UINT8),
353    FETCH_NULL(RGB_UINT16),
354    FETCH_NULL(RGB_UINT32),
355    FETCH_NULL(RGB_SINT8),
356    FETCH_NULL(RGB_SINT16),
357    FETCH_NULL(RGB_SINT32),
358    FETCH_FUNCS(RGBA_UINT8),
359    FETCH_FUNCS(RGBA_UINT16),
360    FETCH_FUNCS(RGBA_UINT32),
361    FETCH_FUNCS(RGBA_SINT8),
362    FETCH_FUNCS(RGBA_SINT16),
363    FETCH_FUNCS(RGBA_SINT32),
364    FETCH_NULL(RGBX_UINT8),
365    FETCH_NULL(RGBX_UINT16),
366    FETCH_NULL(RGBX_UINT32),
367    FETCH_NULL(RGBX_SINT8),
368    FETCH_NULL(RGBX_SINT16),
369    FETCH_NULL(RGBX_SINT32),
370 
371    /* DXT compressed formats */
372    FETCH_COMPRESSED(RGB_DXT1),
373    FETCH_COMPRESSED(RGBA_DXT1),
374    FETCH_COMPRESSED(RGBA_DXT3),
375    FETCH_COMPRESSED(RGBA_DXT5),
376 
377    /* DXT sRGB compressed formats */
378    FETCH_COMPRESSED(SRGB_DXT1),
379    FETCH_COMPRESSED(SRGBA_DXT1),
380    FETCH_COMPRESSED(SRGBA_DXT3),
381    FETCH_COMPRESSED(SRGBA_DXT5),
382 
383    /* FXT1 compressed formats */
384    FETCH_COMPRESSED(RGB_FXT1),
385    FETCH_COMPRESSED(RGBA_FXT1),
386 
387    /* RGTC compressed formats */
388    FETCH_COMPRESSED(R_RGTC1_UNORM),
389    FETCH_COMPRESSED(R_RGTC1_SNORM),
390    FETCH_COMPRESSED(RG_RGTC2_UNORM),
391    FETCH_COMPRESSED(RG_RGTC2_SNORM),
392 
393    /* LATC1/2 compressed formats */
394    FETCH_COMPRESSED(L_LATC1_UNORM),
395    FETCH_COMPRESSED(L_LATC1_SNORM),
396    FETCH_COMPRESSED(LA_LATC2_UNORM),
397    FETCH_COMPRESSED(LA_LATC2_SNORM),
398 
399    /* ETC1/2 compressed formats */
400    FETCH_COMPRESSED(ETC1_RGB8),
401    FETCH_COMPRESSED(ETC2_RGB8),
402    FETCH_COMPRESSED(ETC2_SRGB8),
403    FETCH_COMPRESSED(ETC2_RGBA8_EAC),
404    FETCH_COMPRESSED(ETC2_SRGB8_ALPHA8_EAC),
405    FETCH_COMPRESSED(ETC2_R11_EAC),
406    FETCH_COMPRESSED(ETC2_RG11_EAC),
407    FETCH_COMPRESSED(ETC2_SIGNED_R11_EAC),
408    FETCH_COMPRESSED(ETC2_SIGNED_RG11_EAC),
409    FETCH_COMPRESSED(ETC2_RGB8_PUNCHTHROUGH_ALPHA1),
410    FETCH_COMPRESSED(ETC2_SRGB8_PUNCHTHROUGH_ALPHA1),
411    FETCH_COMPRESSED(BPTC_RGBA_UNORM),
412    FETCH_COMPRESSED(BPTC_SRGB_ALPHA_UNORM),
413    FETCH_COMPRESSED(BPTC_RGB_SIGNED_FLOAT),
414    FETCH_COMPRESSED(BPTC_RGB_UNSIGNED_FLOAT),
415 
416    /* ASTC compressed formats */
417    FETCH_NULL(RGBA_ASTC_4x4),
418    FETCH_NULL(RGBA_ASTC_5x4),
419    FETCH_NULL(RGBA_ASTC_5x5),
420    FETCH_NULL(RGBA_ASTC_6x5),
421    FETCH_NULL(RGBA_ASTC_6x6),
422    FETCH_NULL(RGBA_ASTC_8x5),
423    FETCH_NULL(RGBA_ASTC_8x6),
424    FETCH_NULL(RGBA_ASTC_8x8),
425    FETCH_NULL(RGBA_ASTC_10x5),
426    FETCH_NULL(RGBA_ASTC_10x6),
427    FETCH_NULL(RGBA_ASTC_10x8),
428    FETCH_NULL(RGBA_ASTC_10x10),
429    FETCH_NULL(RGBA_ASTC_12x10),
430    FETCH_NULL(RGBA_ASTC_12x12),
431    FETCH_NULL(SRGB8_ALPHA8_ASTC_4x4),
432    FETCH_NULL(SRGB8_ALPHA8_ASTC_5x4),
433    FETCH_NULL(SRGB8_ALPHA8_ASTC_5x5),
434    FETCH_NULL(SRGB8_ALPHA8_ASTC_6x5),
435    FETCH_NULL(SRGB8_ALPHA8_ASTC_6x6),
436    FETCH_NULL(SRGB8_ALPHA8_ASTC_8x5),
437    FETCH_NULL(SRGB8_ALPHA8_ASTC_8x6),
438    FETCH_NULL(SRGB8_ALPHA8_ASTC_8x8),
439    FETCH_NULL(SRGB8_ALPHA8_ASTC_10x5),
440    FETCH_NULL(SRGB8_ALPHA8_ASTC_10x6),
441    FETCH_NULL(SRGB8_ALPHA8_ASTC_10x8),
442    FETCH_NULL(SRGB8_ALPHA8_ASTC_10x10),
443    FETCH_NULL(SRGB8_ALPHA8_ASTC_12x10),
444    FETCH_NULL(SRGB8_ALPHA8_ASTC_12x12),
445 
446    FETCH_NULL(RGBA_ASTC_3x3x3),
447    FETCH_NULL(RGBA_ASTC_4x3x3),
448    FETCH_NULL(RGBA_ASTC_4x4x3),
449    FETCH_NULL(RGBA_ASTC_4x4x4),
450    FETCH_NULL(RGBA_ASTC_5x4x4),
451    FETCH_NULL(RGBA_ASTC_5x5x4),
452    FETCH_NULL(RGBA_ASTC_5x5x5),
453    FETCH_NULL(RGBA_ASTC_6x5x5),
454    FETCH_NULL(RGBA_ASTC_6x6x5),
455    FETCH_NULL(RGBA_ASTC_6x6x6),
456    FETCH_NULL(SRGB8_ALPHA8_ASTC_3x3x3),
457    FETCH_NULL(SRGB8_ALPHA8_ASTC_4x3x3),
458    FETCH_NULL(SRGB8_ALPHA8_ASTC_4x4x3),
459    FETCH_NULL(SRGB8_ALPHA8_ASTC_4x4x4),
460    FETCH_NULL(SRGB8_ALPHA8_ASTC_5x4x4),
461    FETCH_NULL(SRGB8_ALPHA8_ASTC_5x5x4),
462    FETCH_NULL(SRGB8_ALPHA8_ASTC_5x5x5),
463    FETCH_NULL(SRGB8_ALPHA8_ASTC_6x5x5),
464    FETCH_NULL(SRGB8_ALPHA8_ASTC_6x6x5),
465    FETCH_NULL(SRGB8_ALPHA8_ASTC_6x6x6)
466 };
467 
468 
469 /**
470  * Initialize the texture image's FetchTexel methods.
471  */
472 static void
set_fetch_functions(const struct gl_sampler_object * samp,struct swrast_texture_image * texImage,GLuint dims)473 set_fetch_functions(const struct gl_sampler_object *samp,
474                     struct swrast_texture_image *texImage, GLuint dims)
475 {
476    mesa_format format = texImage->Base.TexFormat;
477 
478 #ifdef DEBUG
479    /* check that the table entries are sorted by format name */
480    mesa_format fmt;
481    for (fmt = 0; fmt < MESA_FORMAT_COUNT; fmt++) {
482       assert(texfetch_funcs[fmt].Name == fmt);
483    }
484 #endif
485 
486    STATIC_ASSERT(ARRAY_SIZE(texfetch_funcs) == MESA_FORMAT_COUNT);
487 
488    if (samp->sRGBDecode == GL_SKIP_DECODE_EXT &&
489        _mesa_get_format_color_encoding(format) == GL_SRGB) {
490       format = _mesa_get_srgb_format_linear(format);
491    }
492 
493    assert(format < MESA_FORMAT_COUNT);
494 
495    switch (dims) {
496    case 1:
497       texImage->FetchTexel = texfetch_funcs[format].Fetch1D;
498       break;
499    case 2:
500       texImage->FetchTexel = texfetch_funcs[format].Fetch2D;
501       break;
502    case 3:
503       texImage->FetchTexel = texfetch_funcs[format].Fetch3D;
504       break;
505    default:
506       assert(!"Bad dims in set_fetch_functions()");
507    }
508 
509    texImage->FetchCompressedTexel = _mesa_get_compressed_fetch_func(format);
510 
511    assert(texImage->FetchTexel);
512 }
513 
514 void
_mesa_update_fetch_functions(struct gl_context * ctx,GLuint unit)515 _mesa_update_fetch_functions(struct gl_context *ctx, GLuint unit)
516 {
517    struct gl_texture_object *texObj = ctx->Texture.Unit[unit]._Current;
518    struct gl_sampler_object *samp;
519    GLuint face, i;
520    GLuint dims;
521 
522    if (!texObj)
523       return;
524 
525    samp = _mesa_get_samplerobj(ctx, unit);
526 
527    dims = _mesa_get_texture_dimensions(texObj->Target);
528 
529    for (face = 0; face < 6; face++) {
530       for (i = 0; i < MAX_TEXTURE_LEVELS; i++) {
531          if (texObj->Image[face][i]) {
532 	    set_fetch_functions(samp,
533                                 swrast_texture_image(texObj->Image[face][i]),
534                                 dims);
535          }
536       }
537    }
538 }
539