Lines Matching refs:tex
266 GLubyte tex[4];
267 fetch_2d_texel_rgb_dxt1(rowStride, map, i, j, tex);
268 texel[RCOMP] = UBYTE_TO_FLOAT(tex[RCOMP]);
269 texel[GCOMP] = UBYTE_TO_FLOAT(tex[GCOMP]);
270 texel[BCOMP] = UBYTE_TO_FLOAT(tex[BCOMP]);
271 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]);
278 GLubyte tex[4];
279 fetch_2d_texel_rgba_dxt1(rowStride, map, i, j, tex);
280 texel[RCOMP] = UBYTE_TO_FLOAT(tex[RCOMP]);
281 texel[GCOMP] = UBYTE_TO_FLOAT(tex[GCOMP]);
282 texel[BCOMP] = UBYTE_TO_FLOAT(tex[BCOMP]);
283 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]);
290 GLubyte tex[4];
291 fetch_2d_texel_rgba_dxt3(rowStride, map, i, j, tex);
292 texel[RCOMP] = UBYTE_TO_FLOAT(tex[RCOMP]);
293 texel[GCOMP] = UBYTE_TO_FLOAT(tex[GCOMP]);
294 texel[BCOMP] = UBYTE_TO_FLOAT(tex[BCOMP]);
295 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]);
302 GLubyte tex[4];
303 fetch_2d_texel_rgba_dxt5(rowStride, map, i, j, tex);
304 texel[RCOMP] = UBYTE_TO_FLOAT(tex[RCOMP]);
305 texel[GCOMP] = UBYTE_TO_FLOAT(tex[GCOMP]);
306 texel[BCOMP] = UBYTE_TO_FLOAT(tex[BCOMP]);
307 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]);
315 GLubyte tex[4];
316 fetch_2d_texel_rgb_dxt1(rowStride, map, i, j, tex);
317 texel[RCOMP] = util_format_srgb_8unorm_to_linear_float(tex[RCOMP]);
318 texel[GCOMP] = util_format_srgb_8unorm_to_linear_float(tex[GCOMP]);
319 texel[BCOMP] = util_format_srgb_8unorm_to_linear_float(tex[BCOMP]);
320 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]);
327 GLubyte tex[4];
328 fetch_2d_texel_rgba_dxt1(rowStride, map, i, j, tex);
329 texel[RCOMP] = util_format_srgb_8unorm_to_linear_float(tex[RCOMP]);
330 texel[GCOMP] = util_format_srgb_8unorm_to_linear_float(tex[GCOMP]);
331 texel[BCOMP] = util_format_srgb_8unorm_to_linear_float(tex[BCOMP]);
332 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]);
339 GLubyte tex[4];
340 fetch_2d_texel_rgba_dxt3(rowStride, map, i, j, tex);
341 texel[RCOMP] = util_format_srgb_8unorm_to_linear_float(tex[RCOMP]);
342 texel[GCOMP] = util_format_srgb_8unorm_to_linear_float(tex[GCOMP]);
343 texel[BCOMP] = util_format_srgb_8unorm_to_linear_float(tex[BCOMP]);
344 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]);
351 GLubyte tex[4];
352 fetch_2d_texel_rgba_dxt5(rowStride, map, i, j, tex);
353 texel[RCOMP] = util_format_srgb_8unorm_to_linear_float(tex[RCOMP]);
354 texel[GCOMP] = util_format_srgb_8unorm_to_linear_float(tex[GCOMP]);
355 texel[BCOMP] = util_format_srgb_8unorm_to_linear_float(tex[BCOMP]);
356 texel[ACOMP] = UBYTE_TO_FLOAT(tex[ACOMP]);