Lines Matching refs:BCOMP
146 const GLint b = DIV255((rgba[i][BCOMP] - dest[i][BCOMP]) * t) + dest[i][BCOMP];
154 rgba[i][BCOMP] = (GLubyte) b;
191 GLushort b = (GLushort) ((rgba[i][BCOMP] - dest[i][BCOMP]) * tt + dest[i][BCOMP]);
228 GLfloat b = (rgba[i][BCOMP] - dest[i][BCOMP]) * t + dest[i][BCOMP];
261 GLint b = rgba[i][BCOMP] + dest[i][BCOMP];
265 rgba[i][BCOMP] = (GLubyte) MIN2( b, 255 );
277 GLint b = rgba[i][BCOMP] + dest[i][BCOMP];
281 rgba[i][BCOMP] = (GLshort) MIN2( b, 255 );
295 rgba[i][BCOMP] += dest[i][BCOMP];
324 rgba[i][BCOMP] = MIN2( rgba[i][BCOMP], dest[i][BCOMP] );
336 rgba[i][BCOMP] = MIN2( rgba[i][BCOMP], dest[i][BCOMP] );
349 rgba[i][BCOMP] = MIN2( rgba[i][BCOMP], dest[i][BCOMP] );
377 rgba[i][BCOMP] = MAX2( rgba[i][BCOMP], dest[i][BCOMP] );
389 rgba[i][BCOMP] = MAX2( rgba[i][BCOMP], dest[i][BCOMP] );
402 rgba[i][BCOMP] = MAX2( rgba[i][BCOMP], dest[i][BCOMP] );
430 rgba[i][BCOMP] = DIV255(rgba[i][BCOMP] * dest[i][BCOMP]);
442 rgba[i][BCOMP] = (rgba[i][BCOMP] * dest[i][BCOMP] + 65535) >> 16;
455 rgba[i][BCOMP] = rgba[i][BCOMP] * dest[i][BCOMP];
482 const GLfloat Bs = rgba[i][BCOMP];
488 const GLfloat Bd = dest[i][BCOMP];
802 rgba[i][BCOMP] = MAX2( b, 0.0F );
839 rgbaF[i][BCOMP] = UBYTE_TO_FLOAT(rgba[i][BCOMP]);
843 destF[i][BCOMP] = UBYTE_TO_FLOAT(dest[i][BCOMP]);
864 rgbaF[i][BCOMP] = USHORT_TO_FLOAT(rgba[i][BCOMP]);
868 destF[i][BCOMP] = USHORT_TO_FLOAT(dest[i][BCOMP]);
879 UNCLAMPED_FLOAT_TO_USHORT(rgba[i][BCOMP], rgbaF[i][BCOMP]);