 | glGetScissor Method |
Get the current scissor box.
Namespace:
Ooogles
Assembly:
Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static void GetScissor(
out int left,
out int bottom,
out int width,
out int height
)
Public Shared Sub GetScissor (
<OutAttribute> ByRef left As Integer,
<OutAttribute> ByRef bottom As Integer,
<OutAttribute> ByRef width As Integer,
<OutAttribute> ByRef height As Integer
)
public:
static void GetScissor(
[OutAttribute] int% left,
[OutAttribute] int% bottom,
[OutAttribute] int% width,
[OutAttribute] int% height
)
static member GetScissor :
left : int byref *
bottom : int byref *
width : int byref *
height : int byref -> unit
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.
RemarksOpenGL API: glGetIntegerv(GL_SCISSOR_BOX)
See Also