glScissorIndexed function opengl_glext

void glScissorIndexed(
  1. int index,
  2. int left,
  3. int bottom,
  4. int width,
  5. int height,
)
GLAPI void APIENTRY glScissorIndexed (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height)

Implementation

void glScissorIndexed(int index, int left, int bottom, int width, int height) {
  final glScissorIndexedAsFunction = _glScissorIndexed
      .cast<
        NativeFunction<
          Void Function(
            Uint32 index,
            Int32 left,
            Int32 bottom,
            Uint32 width,
            Uint32 height,
          )
        >
      >()
      .asFunction<
        void Function(int index, int left, int bottom, int width, int height)
      >();
  return glScissorIndexedAsFunction(index, left, bottom, width, height);
}