glScissorIndexed

define the scissor box for a specific viewport

Signature

glScissorIndexed( GLuint ( index ) , GLint ( left ) , GLint ( bottom ) , GLsizei ( width ) , GLsizei ( height ) )-> void
glScissorIndexed( index , left , bottom , width , height )
glScissorIndexedv( GLuint ( index ) , const GLint *( v ) )-> void
glScissorIndexedv( index , v )

Parameters

VariablesDescription
index
Specifies the index of the viewport whose scissor box to modify.
left, bottom
Specify the coordinate of the bottom left corner of the scissor box, in pixels.
width, height
Specify ths dimensions of the scissor box, in pixels.
v
For glScissorIndexedv , specifies the address of an array containing the left, bottom, width and height of each scissor box, in that order.