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