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