glRotatexOes function opengl_glext
GLAPI void APIENTRY glRotatexOES (GLfixed angle, GLfixed x, GLfixed y, GLfixed z)
Implementation
void glRotatexOes(int angle, int x, int y, int z) {
final glRotatexOesAsFunction = _glRotatexOes
.cast<
NativeFunction<Void Function(Int32 angle, Int32 x, Int32 y, Int32 z)>
>()
.asFunction<void Function(int angle, int x, int y, int z)>();
return glRotatexOesAsFunction(angle, x, y, z);
}