glColor4f function
GLAPI void GLAPIENTRY glColor4f (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
Implementation
void glColor4f(double red, double green, double blue, double alpha) {
final glColor4fLookupFunction = libGL.lookupFunction<
Void Function(Float red, Float green, Float blue, Float alpha),
void Function(
double red, double green, double blue, double alpha)>('glColor4f');
return glColor4fLookupFunction(red, green, blue, alpha);
}