glColor4fNormal3fVertex3fvSun function opengl_glext

void glColor4fNormal3fVertex3fvSun(
  1. Pointer<Float> c,
  2. Pointer<Float> n,
  3. Pointer<Float> v
)
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);
}