glIndexxvOes function opengl_glext

void glIndexxvOes(
  1. Pointer<Int32> component
)
GLAPI void APIENTRY glIndexxvOES (const GLfixed *component)

Implementation

void glIndexxvOes(Pointer<Int32> component) {
  final glIndexxvOesAsFunction = _glIndexxvOes
      .cast<NativeFunction<Void Function(Pointer<Int32> component)>>()
      .asFunction<void Function(Pointer<Int32> component)>();
  return glIndexxvOesAsFunction(component);
}