Home | History | Annotate | Download | only in main

Lines Matching refs:texel

296                             GLint i, GLint j, GLint k, GLfloat *texel)
303 texel[RCOMP] = UBYTE_TO_FLOAT(red);
304 texel[GCOMP] = 0.0;
305 texel[BCOMP] = 0.0;
306 texel[ACOMP] = 1.0;
311 GLint i, GLint j, GLint k, GLfloat *texel)
318 texel[RCOMP] = BYTE_TO_FLOAT_TEX(red);
319 texel[GCOMP] = 0.0;
320 texel[BCOMP] = 0.0;
321 texel[ACOMP] = 1.0;
326 GLint i, GLint j, GLint k, GLfloat *texel)
336 texel[RCOMP] = UBYTE_TO_FLOAT(red);
337 texel[GCOMP] = UBYTE_TO_FLOAT(green);
338 texel[BCOMP] = 0.0;
339 texel[ACOMP] = 1.0;
344 GLint i, GLint j, GLint k, GLfloat *texel)
354 texel[RCOMP] = BYTE_TO_FLOAT_TEX(red);
355 texel[GCOMP] = BYTE_TO_FLOAT_TEX(green);
356 texel[BCOMP] = 0.0;
357 texel[ACOMP] = 1.0;
362 GLint i, GLint j, GLint k, GLfloat *texel)
369 texel[RCOMP] =
370 texel[GCOMP] =
371 texel[BCOMP] = UBYTE_TO_FLOAT(red);
372 texel[ACOMP] = 1.0;
377 GLint i, GLint j, GLint k, GLfloat *texel)
384 texel[RCOMP] =
385 texel[GCOMP] =
386 texel[BCOMP] = BYTE_TO_FLOAT_TEX(red);
387 texel[ACOMP] = 1.0;
392 GLint i, GLint j, GLint k, GLfloat *texel)
402 texel[RCOMP] =
403 texel[GCOMP] =
404 texel[BCOMP] = UBYTE_TO_FLOAT(red);
405 texel[ACOMP] = UBYTE_TO_FLOAT(green);
410 GLint i, GLint j, GLint k, GLfloat *texel)
420 texel[RCOMP] =
421 texel[GCOMP] =
422 texel[BCOMP] = BYTE_TO_FLOAT_TEX(red);
423 texel[ACOMP] = BYTE_TO_FLOAT_TEX(green);