glSecondaryColorP3uiv function opengl_glext

void glSecondaryColorP3uiv(
  1. int type,
  2. Pointer<Uint32> color
)
GLAPI void APIENTRY glSecondaryColorP3uiv (GLenum type, const GLuint *color)

Implementation

void glSecondaryColorP3uiv(int type, Pointer<Uint32> color) {
  final glSecondaryColorP3uivAsFunction = _glSecondaryColorP3uiv
      .cast<NativeFunction<Void Function(Uint32 type, Pointer<Uint32> color)>>()
      .asFunction<void Function(int type, Pointer<Uint32> color)>();
  return glSecondaryColorP3uivAsFunction(type, color);
}