glColor4ubVertex3fvSun function opengl_glext

void glColor4ubVertex3fvSun(
  1. Pointer<Uint8> c,
  2. Pointer<Float> v
)
GLAPI void APIENTRY glColor4ubVertex3fvSUN (const GLubyte *c, const GLfloat *v)

Implementation

void glColor4ubVertex3fvSun(Pointer<Uint8> c, Pointer<Float> v) {
  final glColor4ubVertex3fvSunAsFunction = _glColor4ubVertex3fvSun
      .cast<NativeFunction<Void Function(Pointer<Uint8> c, Pointer<Float> v)>>()
      .asFunction<void Function(Pointer<Uint8> c, Pointer<Float> v)>();
  return glColor4ubVertex3fvSunAsFunction(c, v);
}