glPathColorGenNv function opengl_glext

void glPathColorGenNv(
  1. int color,
  2. int genMode,
  3. int colorFormat,
  4. Pointer<Float> coeffs,
)
GLAPI void APIENTRY glPathColorGenNV (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat *coeffs)

Implementation

void glPathColorGenNv(
  int color,
  int genMode,
  int colorFormat,
  Pointer<Float> coeffs,
) {
  final glPathColorGenNvAsFunction = _glPathColorGenNv
      .cast<
        NativeFunction<
          Void Function(
            Uint32 color,
            Uint32 genMode,
            Uint32 colorFormat,
            Pointer<Float> coeffs,
          )
        >
      >()
      .asFunction<
        void Function(
          int color,
          int genMode,
          int colorFormat,
          Pointer<Float> coeffs,
        )
      >();
  return glPathColorGenNvAsFunction(color, genMode, colorFormat, coeffs);
}