glColor3fVertex3fvSun function opengl_glext

void glColor3fVertex3fvSun(
  1. Pointer<Float> c,
  2. Pointer<Float> v
)
GLAPI void APIENTRY glColor3fVertex3fvSUN (const GLfloat *c, const GLfloat *v)

Implementation

void glColor3fVertex3fvSun(Pointer<Float> c, Pointer<Float> v) {
  final glColor3fVertex3fvSunAsFunction = _glColor3fVertex3fvSun
      .cast<NativeFunction<Void Function(Pointer<Float> c, Pointer<Float> v)>>()
      .asFunction<void Function(Pointer<Float> c, Pointer<Float> v)>();
  return glColor3fVertex3fvSunAsFunction(c, v);
}