Click or drag to resize

glGetColorMask Method

Get whether writing of frame buffer color components is enabled.

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void GetColorMask(
	out bool red,
	out bool green,
	out bool blue,
	out bool alpha
)

Parameters

red
Type: SystemBoolean
is set to True of red can be written. False otherwise.
green
Type: SystemBoolean
is set to True of green can be written. False otherwise.
blue
Type: SystemBoolean
is set to True of blue can be written. False otherwise.
alpha
Type: SystemBoolean
is set to True of alpha can be written. False otherwise.
Remarks
OpenGL API: glGetIntegerv(GL_COLOR_WRITEMASK)
See Also