Lines Matching refs:MIN2
263 rgba[i][RCOMP] = (GLubyte) MIN2( r, 255 ); in blend_add()
264 rgba[i][GCOMP] = (GLubyte) MIN2( g, 255 ); in blend_add()
265 rgba[i][BCOMP] = (GLubyte) MIN2( b, 255 ); in blend_add()
266 rgba[i][ACOMP] = (GLubyte) MIN2( a, 255 ); in blend_add()
279 rgba[i][RCOMP] = (GLshort) MIN2( r, 255 ); in blend_add()
280 rgba[i][GCOMP] = (GLshort) MIN2( g, 255 ); in blend_add()
281 rgba[i][BCOMP] = (GLshort) MIN2( b, 255 ); in blend_add()
282 rgba[i][ACOMP] = (GLshort) MIN2( a, 255 ); in blend_add()
322 rgba[i][RCOMP] = MIN2( rgba[i][RCOMP], dest[i][RCOMP] ); in blend_min()
323 rgba[i][GCOMP] = MIN2( rgba[i][GCOMP], dest[i][GCOMP] ); in blend_min()
324 rgba[i][BCOMP] = MIN2( rgba[i][BCOMP], dest[i][BCOMP] ); in blend_min()
325 rgba[i][ACOMP] = MIN2( rgba[i][ACOMP], dest[i][ACOMP] ); in blend_min()
334 rgba[i][RCOMP] = MIN2( rgba[i][RCOMP], dest[i][RCOMP] ); in blend_min()
335 rgba[i][GCOMP] = MIN2( rgba[i][GCOMP], dest[i][GCOMP] ); in blend_min()
336 rgba[i][BCOMP] = MIN2( rgba[i][BCOMP], dest[i][BCOMP] ); in blend_min()
337 rgba[i][ACOMP] = MIN2( rgba[i][ACOMP], dest[i][ACOMP] ); in blend_min()
347 rgba[i][RCOMP] = MIN2( rgba[i][RCOMP], dest[i][RCOMP] ); in blend_min()
348 rgba[i][GCOMP] = MIN2( rgba[i][GCOMP], dest[i][GCOMP] ); in blend_min()
349 rgba[i][BCOMP] = MIN2( rgba[i][BCOMP], dest[i][BCOMP] ); in blend_min()
350 rgba[i][ACOMP] = MIN2( rgba[i][ACOMP], dest[i][ACOMP] ); in blend_min()
758 r = MIN2( Rd, Rs ); in blend_general_float()
759 g = MIN2( Gd, Gs ); in blend_general_float()
760 b = MIN2( Bd, Bs ); in blend_general_float()
786 a = MIN2( Ad, As ); in blend_general_float()