glColor4xOes function opengl_glext
GLAPI void APIENTRY glColor4xOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha)
Implementation
void glColor4xOes(int red, int green, int blue, int alpha) {
final glColor4xOesAsFunction = _glColor4xOes
.cast<
NativeFunction<
Void Function(Int32 red, Int32 green, Int32 blue, Int32 alpha)
>
>()
.asFunction<void Function(int red, int green, int blue, int alpha)>();
return glColor4xOesAsFunction(red, green, blue, alpha);
}