glWindowRectanglesExt function opengl_glext

void glWindowRectanglesExt(
  1. int mode,
  2. int count,
  3. Pointer<Int32> box
)
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);
}