1GLBLENDCOLOR(3G) GLBLENDCOLOR(3G)
2
3
4
6 glBlendColor - set the blend color
7
8
10 void glBlendColor( GLclampf red,
11 GLclampf green,
12 GLclampf blue,
13 GLclampf alpha )
14
15
17 red, green, blue, alpha
18 specify the components of GL_BLEND_COLOR
19
21 The GL_BLEND_COLOR may be used to calculate the source and destination
22 blending factors. The color components are clamped to the range [0, 1]
23 before being stored. See glBlendFunc for a complete description of the
24 blending operations. Initially the GL_BLEND_COLOR is set to (0, 0, 0,
25 0).
26
28 glBlendColor is part of the GL_ARB_imaging subset. glBlendColor is
29 present only if GL_ARB_imaging is returned when glGetString is called
30 with GL_EXTENSIONS as its argument.
31
33 GL_INVALID_OPERATION is generated if glBlendColor is executed between
34 the execution of glBegin and the corresponding execution of glEnd.
35
37 glGet with an argument of GL_BLEND_COLOR
38
40 glBlendEquation(3G), glBlendFunc(3G), glGetString(3G)
41
42
43
44 GLBLENDCOLOR(3G)