Home | History | Annotate | Download | only in main

Lines Matching refs:rgba

231       /* convert image to RGBA/GLubyte */
284 /* convert image to RGBA/GLubyte */
336 /* convert image to RGBA/GLubyte */
390 GLubyte rgba[4];
391 fetch_texel_2d_rgb_dxt1(texImage, i, j, k, rgba);
392 texel[RCOMP] = UBYTE_TO_FLOAT(rgba[RCOMP]);
393 texel[GCOMP] = UBYTE_TO_FLOAT(rgba[GCOMP]);
394 texel[BCOMP] = UBYTE_TO_FLOAT(rgba[BCOMP]);
395 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]);
419 GLubyte rgba[4];
420 fetch_texel_2d_rgba_dxt1(texImage, i, j, k, rgba);
421 texel[RCOMP] = UBYTE_TO_FLOAT(rgba[RCOMP]);
422 texel[GCOMP] = UBYTE_TO_FLOAT(rgba[GCOMP]);
423 texel[BCOMP] = UBYTE_TO_FLOAT(rgba[BCOMP]);
424 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]);
448 GLubyte rgba[4];
449 fetch_texel_2d_rgba_dxt3(texImage, i, j, k, rgba);
450 texel[RCOMP] = UBYTE_TO_FLOAT(rgba[RCOMP]);
451 texel[GCOMP] = UBYTE_TO_FLOAT(rgba[GCOMP]);
452 texel[BCOMP] = UBYTE_TO_FLOAT(rgba[BCOMP]);
453 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]);
477 GLubyte rgba[4];
478 fetch_texel_2d_rgba_dxt5(texImage, i, j, k, rgba);
479 texel[RCOMP] = UBYTE_TO_FLOAT(rgba[RCOMP]);
480 texel[GCOMP] = UBYTE_TO_FLOAT(rgba[GCOMP]);
481 texel[BCOMP] = UBYTE_TO_FLOAT(rgba[BCOMP]);
482 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]);
491 GLubyte rgba[4];
492 fetch_texel_2d_rgb_dxt1(texImage, i, j, k, rgba);
493 texel[RCOMP] = nonlinear_to_linear(rgba[RCOMP]);
494 texel[GCOMP] = nonlinear_to_linear(rgba[GCOMP]);
495 texel[BCOMP] = nonlinear_to_linear(rgba[BCOMP]);
496 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]);
504 GLubyte rgba[4];
505 fetch_texel_2d_rgba_dxt1(texImage, i, j, k, rgba);
506 texel[RCOMP] = nonlinear_to_linear(rgba[RCOMP]);
507 texel[GCOMP] = nonlinear_to_linear(rgba[GCOMP]);
508 texel[BCOMP] = nonlinear_to_linear(rgba[BCOMP]);
509 rgba[ACOMP]);
517 GLubyte rgba[4];
518 fetch_texel_2d_rgba_dxt3(texImage, i, j, k, rgba);
519 texel[RCOMP] = nonlinear_to_linear(rgba[RCOMP]);
520 texel[GCOMP] = nonlinear_to_linear(rgba[GCOMP]);
521 texel[BCOMP] = nonlinear_to_linear(rgba[BCOMP]);
522 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]);
530 GLubyte rgba[4];
531 fetch_texel_2d_rgba_dxt5(texImage, i, j, k, rgba);
532 texel[RCOMP] = nonlinear_to_linear(rgba[RCOMP]);
533 texel[GCOMP] = nonlinear_to_linear(rgba[GCOMP]);
534 texel[BCOMP] = nonlinear_to_linear(rgba[BCOMP]);
535 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]);