Click or drag to resize

glBlendFunc Method

Specify pixel arithmetic using blend functions.

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void BlendFunc(
	glBlendFactor srcFactor,
	glBlendFactor dstFactor
)

Parameters

srcFactor
Type: OooglesglBlendFactor
specifies how the red, green, blue, and alpha source blending factors are computed. The initial value is One.
dstFactor
Type: OooglesglBlendFactor
specifies how the red, green, blue, and alpha destination blending factors are computed. The initial value is Zero.
Remarks
Pixels can be drawn using a function that blends the incoming (source) RGBA values with the RGBA values that are already in the frame buffer (the destination values). Blending is initially disabled. Use Enable(glCapability) and Disable(glCapability) with argument Blend to enable and disable blending.

BlendFunc defines the operation of blending when it is enabled. ASrcFactor specifies which method is used to scale the source color components. ADstFactor specifies which method is used to scale the destination color components. See glBlendFactor for a description of the possible operations.

Note: incoming (source) alpha is correctly thought of as a material opacity, ranging from 1.0, representing complete opacity, to 0.0, representing complete transparency.

Note: transparency is best implemented using blend function (SrcAlpha, OneMinusSrcAlpha) with primitives sorted from farthest to nearest. Note that this transparency calculation does not require the presence of alpha bitplanes in the frame buffer.

OpenGL API: glBlendFunc

See Also

Reference