glIndexxOes function opengl_glext

void glIndexxOes(
  1. int component
)
GLAPI void APIENTRY glIndexxOES (GLfixed component)

Implementation

void glIndexxOes(int component) {
  final glIndexxOesAsFunction = _glIndexxOes
      .cast<NativeFunction<Void Function(Int32 component)>>()
      .asFunction<void Function(int component)>();
  return glIndexxOesAsFunction(component);
}