glWindowRectanglesExt function opengl_glext
GLAPI void APIENTRY glWindowRectanglesEXT (GLenum mode, GLsizei count, const GLint *box)
Implementation
void glWindowRectanglesExt(int mode, int count, Pointer<Int32> box) {
final glWindowRectanglesExtAsFunction = _glWindowRectanglesExt
.cast<
NativeFunction<
Void Function(Uint32 mode, Uint32 count, Pointer<Int32> box)
>
>()
.asFunction<void Function(int mode, int count, Pointer<Int32> box)>();
return glWindowRectanglesExtAsFunction(mode, count, box);
}