GLAPI void APIENTRY glColor4fNormal3fVertex3fvSUN (const GLfloat *c, const GLfloat *n, const GLfloat *v)
 
    
  Implementation
  void glColor4fNormal3fVertex3fvSun(
  Pointer<Float> c,
  Pointer<Float> n,
  Pointer<Float> v,
) {
  final glColor4fNormal3fVertex3fvSunAsFunction = _glColor4fNormal3fVertex3fvSun
      .cast<
        NativeFunction<
          Void Function(Pointer<Float> c, Pointer<Float> n, Pointer<Float> v)
        >
      >()
      .asFunction<
        void Function(Pointer<Float> c, Pointer<Float> n, Pointer<Float> v)
      >();
  return glColor4fNormal3fVertex3fvSunAsFunction(c, n, v);
}