glColor3xOes function opengl_glext
GLAPI void APIENTRY glColor3xOES (GLfixed red, GLfixed green, GLfixed blue)
Implementation
void glColor3xOes(int red, int green, int blue) {
final glColor3xOesAsFunction = _glColor3xOes
.cast<NativeFunction<Void Function(Int32 red, Int32 green, Int32 blue)>>()
.asFunction<void Function(int red, int green, int blue)>();
return glColor3xOesAsFunction(red, green, blue);
}