glSecondaryColor3b function opengl_glext
GLAPI void APIENTRY glSecondaryColor3b (GLbyte red, GLbyte green, GLbyte blue)
Implementation
void glSecondaryColor3b(int red, int green, int blue) {
final glSecondaryColor3bAsFunction = _glSecondaryColor3b
.cast<NativeFunction<Void Function(Int8 red, Int8 green, Int8 blue)>>()
.asFunction<void Function(int red, int green, int blue)>();
return glSecondaryColor3bAsFunction(red, green, blue);
}