glSecondaryColor3ub function opengl_glext
GLAPI void APIENTRY glSecondaryColor3ub (GLubyte red, GLubyte green, GLubyte blue)
Implementation
void glSecondaryColor3ub(int red, int green, int blue) {
final glSecondaryColor3ubAsFunction = _glSecondaryColor3ub
.cast<NativeFunction<Void Function(Uint8 red, Uint8 green, Uint8 blue)>>()
.asFunction<void Function(int red, int green, int blue)>();
return glSecondaryColor3ubAsFunction(red, green, blue);
}