glSecondaryColor3ubvExt function opengl_glext
GLAPI void APIENTRY glSecondaryColor3ubvEXT (const GLubyte *v)
Implementation
void glSecondaryColor3ubvExt(Pointer<Uint8> v) {
  final glSecondaryColor3ubvExtAsFunction = _glSecondaryColor3ubvExt
      .cast<NativeFunction<Void Function(Pointer<Uint8> v)>>()
      .asFunction<void Function(Pointer<Uint8> v)>();
  return glSecondaryColor3ubvExtAsFunction(v);
}