glColor3xvOes function opengl_glext

void glColor3xvOes(
  1. Pointer<Int32> components
)
GLAPI void APIENTRY glColor3xvOES (const GLfixed *components)

Implementation

void glColor3xvOes(Pointer<Int32> components) {
  final glColor3xvOesAsFunction = _glColor3xvOes
      .cast<NativeFunction<Void Function(Pointer<Int32> components)>>()
      .asFunction<void Function(Pointer<Int32> components)>();
  return glColor3xvOesAsFunction(components);
}