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);
}