Lines Matching refs:tex
267 GLubyte tex[4]; in fetch_rgb_dxt1() local
268 fetch_2d_texel_rgb_dxt1(rowStride, map, i, j, tex); in fetch_rgb_dxt1()
269 texel[RCOMP] = UBYTE_TO_FLOAT(tex[RCOMP]); in fetch_rgb_dxt1()
270 texel[GCOMP] = UBYTE_TO_FLOAT(tex[GCOMP]); in fetch_rgb_dxt1()
271 texel[BCOMP] = UBYTE_TO_FLOAT(tex[BCOMP]); in fetch_rgb_dxt1()
272 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]); in fetch_rgb_dxt1()
279 GLubyte tex[4]; in fetch_rgba_dxt1() local
280 fetch_2d_texel_rgba_dxt1(rowStride, map, i, j, tex); in fetch_rgba_dxt1()
281 texel[RCOMP] = UBYTE_TO_FLOAT(tex[RCOMP]); in fetch_rgba_dxt1()
282 texel[GCOMP] = UBYTE_TO_FLOAT(tex[GCOMP]); in fetch_rgba_dxt1()
283 texel[BCOMP] = UBYTE_TO_FLOAT(tex[BCOMP]); in fetch_rgba_dxt1()
284 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]); in fetch_rgba_dxt1()
291 GLubyte tex[4]; in fetch_rgba_dxt3() local
292 fetch_2d_texel_rgba_dxt3(rowStride, map, i, j, tex); in fetch_rgba_dxt3()
293 texel[RCOMP] = UBYTE_TO_FLOAT(tex[RCOMP]); in fetch_rgba_dxt3()
294 texel[GCOMP] = UBYTE_TO_FLOAT(tex[GCOMP]); in fetch_rgba_dxt3()
295 texel[BCOMP] = UBYTE_TO_FLOAT(tex[BCOMP]); in fetch_rgba_dxt3()
296 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]); in fetch_rgba_dxt3()
303 GLubyte tex[4]; in fetch_rgba_dxt5() local
304 fetch_2d_texel_rgba_dxt5(rowStride, map, i, j, tex); in fetch_rgba_dxt5()
305 texel[RCOMP] = UBYTE_TO_FLOAT(tex[RCOMP]); in fetch_rgba_dxt5()
306 texel[GCOMP] = UBYTE_TO_FLOAT(tex[GCOMP]); in fetch_rgba_dxt5()
307 texel[BCOMP] = UBYTE_TO_FLOAT(tex[BCOMP]); in fetch_rgba_dxt5()
308 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]); in fetch_rgba_dxt5()
316 GLubyte tex[4]; in fetch_srgb_dxt1() local
317 fetch_2d_texel_rgb_dxt1(rowStride, map, i, j, tex); in fetch_srgb_dxt1()
318 texel[RCOMP] = util_format_srgb_8unorm_to_linear_float(tex[RCOMP]); in fetch_srgb_dxt1()
319 texel[GCOMP] = util_format_srgb_8unorm_to_linear_float(tex[GCOMP]); in fetch_srgb_dxt1()
320 texel[BCOMP] = util_format_srgb_8unorm_to_linear_float(tex[BCOMP]); in fetch_srgb_dxt1()
321 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]); in fetch_srgb_dxt1()
328 GLubyte tex[4]; in fetch_srgba_dxt1() local
329 fetch_2d_texel_rgba_dxt1(rowStride, map, i, j, tex); in fetch_srgba_dxt1()
330 texel[RCOMP] = util_format_srgb_8unorm_to_linear_float(tex[RCOMP]); in fetch_srgba_dxt1()
331 texel[GCOMP] = util_format_srgb_8unorm_to_linear_float(tex[GCOMP]); in fetch_srgba_dxt1()
332 texel[BCOMP] = util_format_srgb_8unorm_to_linear_float(tex[BCOMP]); in fetch_srgba_dxt1()
333 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]); in fetch_srgba_dxt1()
340 GLubyte tex[4]; in fetch_srgba_dxt3() local
341 fetch_2d_texel_rgba_dxt3(rowStride, map, i, j, tex); in fetch_srgba_dxt3()
342 texel[RCOMP] = util_format_srgb_8unorm_to_linear_float(tex[RCOMP]); in fetch_srgba_dxt3()
343 texel[GCOMP] = util_format_srgb_8unorm_to_linear_float(tex[GCOMP]); in fetch_srgba_dxt3()
344 texel[BCOMP] = util_format_srgb_8unorm_to_linear_float(tex[BCOMP]); in fetch_srgba_dxt3()
345 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]); in fetch_srgba_dxt3()
352 GLubyte tex[4]; in fetch_srgba_dxt5() local
353 fetch_2d_texel_rgba_dxt5(rowStride, map, i, j, tex); in fetch_srgba_dxt5()
354 texel[RCOMP] = util_format_srgb_8unorm_to_linear_float(tex[RCOMP]); in fetch_srgba_dxt5()
355 texel[GCOMP] = util_format_srgb_8unorm_to_linear_float(tex[GCOMP]); in fetch_srgba_dxt5()
356 texel[BCOMP] = util_format_srgb_8unorm_to_linear_float(tex[BCOMP]); in fetch_srgba_dxt5()
357 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]); in fetch_srgba_dxt5()