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