Lines Matching refs:BCOMP

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