glSecondaryColor3usv function opengl_glext

void glSecondaryColor3usv(
  1. Pointer<Uint16> v
)
GLAPI void APIENTRY glSecondaryColor3usv (const GLushort *v)

Implementation

void glSecondaryColor3usv(Pointer<Uint16> v) {
  final glSecondaryColor3usvAsFunction = _glSecondaryColor3usv
      .cast<NativeFunction<Void Function(Pointer<Uint16> v)>>()
      .asFunction<void Function(Pointer<Uint16> v)>();
  return glSecondaryColor3usvAsFunction(v);
}