glMatrixRotatefExt function opengl_glext
GLAPI void APIENTRY glMatrixRotatefEXT (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z)
Implementation
void glMatrixRotatefExt(int mode, double angle, double x, double y, double z) {
final glMatrixRotatefExtAsFunction = _glMatrixRotatefExt
.cast<
NativeFunction<
Void Function(Uint32 mode, Float angle, Float x, Float y, Float z)
>
>()
.asFunction<
void Function(int mode, double angle, double x, double y, double z)
>();
return glMatrixRotatefExtAsFunction(mode, angle, x, y, z);
}