Click or drag to resize

glGetScissor Method

Get the current scissor box.

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void GetScissor(
	out int left,
	out int bottom,
	out int width,
	out int height
)

Parameters

left
Type: SystemInt32
is set to the X-coordinate of the lower left corner of the scissor box.
bottom
Type: SystemInt32
is set to the Y-coordinate of the lower left corner of the scissor box.
width
Type: SystemInt32
is set to the width of the scissor box.
height
Type: SystemInt32
is set to the height of the scissor box.
Remarks
OpenGL API: glGetIntegerv(GL_SCISSOR_BOX)
See Also