1GLBLENDCOLOR(3G) OpenGL Manual GLBLENDCOLOR(3G)
2
3
4
6 glBlendColor - set the blend color
7
9 void glBlendColor(GLfloat red, GLfloat green, GLfloat blue,
10 GLfloat alpha);
11
13 red, green, blue, alpha
14 specify the components of GL_BLEND_COLOR
15
17 The GL_BLEND_COLOR may be used to calculate the source and destination
18 blending factors. The color components are clamped to the range 0 1
19 before being stored. See glBlendFunc() for a complete description of
20 the blending operations. Initially the GL_BLEND_COLOR is set to (0, 0,
21 0, 0).
22
24 The type of the red, green, blue, and alpha parameters was changed from
25 GLclampf to GLfloat. This change is transparent to user code and is
26 described in detail on the removedTypes() page.
27
29 glGet() with an argument of GL_BLEND_COLOR
30
32 glBlendEquation(), glBlendFunc(), glGetString(), removedTypes()
33
35 Copyright © 1991-2006 Silicon Graphics, Inc. This document is licensed
36 under the SGI Free Software B License. For details, see
37 http://oss.sgi.com/projects/FreeB/.
38
40 opengl.org
41
42
43
44opengl.org 06/10/2014 GLBLENDCOLOR(3G)