Home | History | Annotate | Download | only in swrast

Lines Matching refs:BCOMP

149             const GLint b = DIV255((rgba[i][BCOMP] - dest[i][BCOMP]) * t) + dest[i][BCOMP];
157 rgba[i][BCOMP] = (GLubyte) b;
194 GLushort b = (GLushort) ((rgba[i][BCOMP] - dest[i][BCOMP]) * tt + dest[i][BCOMP]);
231 GLfloat b = (rgba[i][BCOMP] - dest[i][BCOMP]) * t + dest[i][BCOMP];
264 GLint b = rgba[i][BCOMP] + dest[i][BCOMP];
268 rgba[i][BCOMP] = (GLubyte) MIN2( b, 255 );
280 GLint b = rgba[i][BCOMP] + dest[i][BCOMP];
284 rgba[i][BCOMP] = (GLshort) MIN2( b, 255 );
298 rgba[i][BCOMP] += dest[i][BCOMP];
327 rgba[i][BCOMP] = MIN2( rgba[i][BCOMP], dest[i][BCOMP] );
339 rgba[i][BCOMP] = MIN2( rgba[i][BCOMP], dest[i][BCOMP] );
352 rgba[i][BCOMP] = MIN2( rgba[i][BCOMP], dest[i][BCOMP] );
380 rgba[i][BCOMP] = MAX2( rgba[i][BCOMP], dest[i][BCOMP] );
392 rgba[i][BCOMP] = MAX2( rgba[i][BCOMP], dest[i][BCOMP] );
405 rgba[i][BCOMP] = MAX2( rgba[i][BCOMP], dest[i][BCOMP] );
433 rgba[i][BCOMP] = DIV255(rgba[i][BCOMP] * dest[i][BCOMP]);
445 rgba[i][BCOMP] = (rgba[i][BCOMP] * dest[i][BCOMP] + 65535) >> 16;
458 rgba[i][BCOMP] = rgba[i][BCOMP] * dest[i][BCOMP];
485 const GLfloat Bs = rgba[i][BCOMP];
491 const GLfloat Bd = dest[i][BCOMP];
805 rgba[i][BCOMP] = MAX2( b, 0.0F );
842 rgbaF[i][BCOMP] = UBYTE_TO_FLOAT(rgba[i][BCOMP]);
846 destF[i][BCOMP] = UBYTE_TO_FLOAT(dest[i][BCOMP]);
867 rgbaF[i][BCOMP] = USHORT_TO_FLOAT(rgba[i][BCOMP]);
871 destF[i][BCOMP] = USHORT_TO_FLOAT(dest[i][BCOMP]);
882 UNCLAMPED_FLOAT_TO_USHORT(rgba[i][BCOMP], rgbaF[i][BCOMP]);