Lines Matching defs:texel
316 GLint rowStride, GLint i, GLint j, GLfloat *texel)
320 texel[RCOMP] = UBYTE_TO_FLOAT(red);
321 texel[GCOMP] = 0.0;
322 texel[BCOMP] = 0.0;
323 texel[ACOMP] = 1.0;
328 GLint rowStride, GLint i, GLint j, GLfloat *texel)
332 texel[RCOMP] =
333 texel[GCOMP] =
334 texel[BCOMP] = UBYTE_TO_FLOAT(red);
335 texel[ACOMP] = 1.0;
340 GLint rowStride, GLint i, GLint j, GLfloat *texel)
345 texel[RCOMP] = BYTE_TO_FLOAT_TEX(red);
346 texel[GCOMP] = 0.0;
347 texel[BCOMP] = 0.0;
348 texel[ACOMP] = 1.0;
353 GLint rowStride, GLint i, GLint j, GLfloat *texel)
358 texel[RCOMP] =
359 texel[GCOMP] =
360 texel[BCOMP] = BYTE_TO_FLOAT(red);
361 texel[ACOMP] = 1.0;
366 GLint rowStride, GLint i, GLint j, GLfloat *texel)
375 texel[RCOMP] = UBYTE_TO_FLOAT(red);
376 texel[GCOMP] = UBYTE_TO_FLOAT(green);
377 texel[BCOMP] = 0.0;
378 texel[ACOMP] = 1.0;
383 GLint rowStride, GLint i, GLint j, GLfloat *texel)
392 texel[RCOMP] =
393 texel[GCOMP] =
394 texel[BCOMP] = UBYTE_TO_FLOAT(red);
395 texel[ACOMP] = UBYTE_TO_FLOAT(green);
401 GLint rowStride, GLint i, GLint j, GLfloat *texel)
410 texel[RCOMP] = BYTE_TO_FLOAT_TEX(red);
411 texel[GCOMP] = BYTE_TO_FLOAT_TEX(green);
412 texel[BCOMP] = 0.0;
413 texel[ACOMP] = 1.0;
419 GLint rowStride, GLint i, GLint j, GLfloat *texel)
428 texel[RCOMP] =
429 texel[GCOMP] =
430 texel[BCOMP] = BYTE_TO_FLOAT_TEX(red);
431 texel[ACOMP] = BYTE_TO_FLOAT_TEX(green);