Lines Matching refs:ACOMP

137          const GLint t = rgba[i][ACOMP];  /* t is in [0, 255] */
147 const GLint a = DIV255((rgba[i][ACOMP] - dest[i][ACOMP]) * t) + dest[i][ACOMP];
155 rgba[i][ACOMP] = (GLubyte) a;
182 const GLint t = rgba[i][ACOMP];
192 GLushort a = (GLushort) ((rgba[i][ACOMP] - dest[i][ACOMP]) * tt + dest[i][ACOMP]);
220 const GLfloat t = rgba[i][ACOMP]; /* t in [0, 1] */
229 GLfloat a = (rgba[i][ACOMP] - dest[i][ACOMP]) * t + dest[i][ACOMP];
262 GLint a = rgba[i][ACOMP] + dest[i][ACOMP];
266 rgba[i][ACOMP] = (GLubyte) MIN2( a, 255 );
278 GLint a = rgba[i][ACOMP] + dest[i][ACOMP];
282 rgba[i][ACOMP] = (GLshort) MIN2( a, 255 );
296 rgba[i][ACOMP] += dest[i][ACOMP];
325 rgba[i][ACOMP] = MIN2( rgba[i][ACOMP], dest[i][ACOMP] );
337 rgba[i][ACOMP] = MIN2( rgba[i][ACOMP], dest[i][ACOMP] );
350 rgba[i][ACOMP] = MIN2( rgba[i][ACOMP], dest[i][ACOMP] );
378 rgba[i][ACOMP] = MAX2( rgba[i][ACOMP], dest[i][ACOMP] );
390 rgba[i][ACOMP] = MAX2( rgba[i][ACOMP], dest[i][ACOMP] );
403 rgba[i][ACOMP] = MAX2( rgba[i][ACOMP], dest[i][ACOMP] );
431 rgba[i][ACOMP] = DIV255(rgba[i][ACOMP] * dest[i][ACOMP]);
443 rgba[i][ACOMP] = (rgba[i][ACOMP] * dest[i][ACOMP] + 65535) >> 16;
456 rgba[i][ACOMP] = rgba[i][ACOMP] * dest[i][ACOMP];
483 const GLfloat As = rgba[i][ACOMP];
489 const GLfloat Ad = dest[i][ACOMP];
803 rgba[i][ACOMP] = CLAMP( a, 0.0F, 1.0F );
840 rgbaF[i][ACOMP] = UBYTE_TO_FLOAT(rgba[i][ACOMP]);
844 destF[i][ACOMP] = UBYTE_TO_FLOAT(dest[i][ACOMP]);
865 rgbaF[i][ACOMP] = USHORT_TO_FLOAT(rgba[i][ACOMP]);
869 destF[i][ACOMP] = USHORT_TO_FLOAT(dest[i][ACOMP]);
880 UNCLAMPED_FLOAT_TO_USHORT(rgba[i][ACOMP], rgbaF[i][ACOMP]);