glScissorIndexedv function opengl_glext

void glScissorIndexedv(
  1. int index,
  2. Pointer<Int32> v
)
GLAPI void APIENTRY glScissorIndexedv (GLuint index, const GLint *v)

Implementation

void glScissorIndexedv(int index, Pointer<Int32> v) {
  final glScissorIndexedvAsFunction = _glScissorIndexedv
      .cast<NativeFunction<Void Function(Uint32 index, Pointer<Int32> v)>>()
      .asFunction<void Function(int index, Pointer<Int32> v)>();
  return glScissorIndexedvAsFunction(index, v);
}