void
glScissorIndexed(
- int index,
- int left,
- int bottom,
- int width,
- 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);
}