Lines Matching refs:texel

372                         GLint i, GLint j, GLint k, GLubyte *texel)  in fetch_texel_2d_rgb_dxt1()  argument
378 texImage->Map + sliceOffset, i, j, texel); in fetch_texel_2d_rgb_dxt1()
387 GLint i, GLint j, GLint k, GLfloat *texel) in _mesa_fetch_texel_rgb_dxt1() argument
392 texel[RCOMP] = UBYTE_TO_FLOAT(rgba[RCOMP]); in _mesa_fetch_texel_rgb_dxt1()
393 texel[GCOMP] = UBYTE_TO_FLOAT(rgba[GCOMP]); in _mesa_fetch_texel_rgb_dxt1()
394 texel[BCOMP] = UBYTE_TO_FLOAT(rgba[BCOMP]); in _mesa_fetch_texel_rgb_dxt1()
395 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]); in _mesa_fetch_texel_rgb_dxt1()
401 GLint i, GLint j, GLint k, GLubyte *texel) in fetch_texel_2d_rgba_dxt1() argument
407 texImage->Map + sliceOffset, i, j, texel); in fetch_texel_2d_rgba_dxt1()
416 GLint i, GLint j, GLint k, GLfloat *texel) in _mesa_fetch_texel_rgba_dxt1() argument
421 texel[RCOMP] = UBYTE_TO_FLOAT(rgba[RCOMP]); in _mesa_fetch_texel_rgba_dxt1()
422 texel[GCOMP] = UBYTE_TO_FLOAT(rgba[GCOMP]); in _mesa_fetch_texel_rgba_dxt1()
423 texel[BCOMP] = UBYTE_TO_FLOAT(rgba[BCOMP]); in _mesa_fetch_texel_rgba_dxt1()
424 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]); in _mesa_fetch_texel_rgba_dxt1()
430 GLint i, GLint j, GLint k, GLubyte *texel) in fetch_texel_2d_rgba_dxt3() argument
436 texImage->Map + sliceOffset, i, j, texel); in fetch_texel_2d_rgba_dxt3()
445 GLint i, GLint j, GLint k, GLfloat *texel) in _mesa_fetch_texel_rgba_dxt3() argument
450 texel[RCOMP] = UBYTE_TO_FLOAT(rgba[RCOMP]); in _mesa_fetch_texel_rgba_dxt3()
451 texel[GCOMP] = UBYTE_TO_FLOAT(rgba[GCOMP]); in _mesa_fetch_texel_rgba_dxt3()
452 texel[BCOMP] = UBYTE_TO_FLOAT(rgba[BCOMP]); in _mesa_fetch_texel_rgba_dxt3()
453 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]); in _mesa_fetch_texel_rgba_dxt3()
459 GLint i, GLint j, GLint k, GLubyte *texel) in fetch_texel_2d_rgba_dxt5() argument
465 texImage->Map + sliceOffset, i, j, texel); in fetch_texel_2d_rgba_dxt5()
474 GLint i, GLint j, GLint k, GLfloat *texel) in _mesa_fetch_texel_rgba_dxt5() argument
479 texel[RCOMP] = UBYTE_TO_FLOAT(rgba[RCOMP]); in _mesa_fetch_texel_rgba_dxt5()
480 texel[GCOMP] = UBYTE_TO_FLOAT(rgba[GCOMP]); in _mesa_fetch_texel_rgba_dxt5()
481 texel[BCOMP] = UBYTE_TO_FLOAT(rgba[BCOMP]); in _mesa_fetch_texel_rgba_dxt5()
482 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]); in _mesa_fetch_texel_rgba_dxt5()
488 GLint i, GLint j, GLint k, GLfloat *texel) in _mesa_fetch_texel_srgb_dxt1() argument
493 texel[RCOMP] = nonlinear_to_linear(rgba[RCOMP]); in _mesa_fetch_texel_srgb_dxt1()
494 texel[GCOMP] = nonlinear_to_linear(rgba[GCOMP]); in _mesa_fetch_texel_srgb_dxt1()
495 texel[BCOMP] = nonlinear_to_linear(rgba[BCOMP]); in _mesa_fetch_texel_srgb_dxt1()
496 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]); in _mesa_fetch_texel_srgb_dxt1()
501 GLint i, GLint j, GLint k, GLfloat *texel) in _mesa_fetch_texel_srgba_dxt1() argument
506 texel[RCOMP] = nonlinear_to_linear(rgba[RCOMP]); in _mesa_fetch_texel_srgba_dxt1()
507 texel[GCOMP] = nonlinear_to_linear(rgba[GCOMP]); in _mesa_fetch_texel_srgba_dxt1()
508 texel[BCOMP] = nonlinear_to_linear(rgba[BCOMP]); in _mesa_fetch_texel_srgba_dxt1()
509 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]); in _mesa_fetch_texel_srgba_dxt1()
514 GLint i, GLint j, GLint k, GLfloat *texel) in _mesa_fetch_texel_srgba_dxt3() argument
519 texel[RCOMP] = nonlinear_to_linear(rgba[RCOMP]); in _mesa_fetch_texel_srgba_dxt3()
520 texel[GCOMP] = nonlinear_to_linear(rgba[GCOMP]); in _mesa_fetch_texel_srgba_dxt3()
521 texel[BCOMP] = nonlinear_to_linear(rgba[BCOMP]); in _mesa_fetch_texel_srgba_dxt3()
522 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]); in _mesa_fetch_texel_srgba_dxt3()
527 GLint i, GLint j, GLint k, GLfloat *texel) in _mesa_fetch_texel_srgba_dxt5() argument
532 texel[RCOMP] = nonlinear_to_linear(rgba[RCOMP]); in _mesa_fetch_texel_srgba_dxt5()
533 texel[GCOMP] = nonlinear_to_linear(rgba[GCOMP]); in _mesa_fetch_texel_srgba_dxt5()
534 texel[BCOMP] = nonlinear_to_linear(rgba[BCOMP]); in _mesa_fetch_texel_srgba_dxt5()
535 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]); in _mesa_fetch_texel_srgba_dxt5()