glScissor function
GLAPI void GLAPIENTRY glScissor (GLint x, GLint y, GLsizei width, GLsizei height)
Implementation
void glScissor(int x, int y, int width, int height) {
final glScissorLookupFunction = libGL.lookupFunction<
Void Function(Int32 x, Int32 y, Uint32 width, Uint32 height),
void Function(int x, int y, int width, int height)>('glScissor');
return glScissorLookupFunction(x, y, width, height);
}