mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:47:35 +00:00
LibGL: Implement glRotated
This commit is contained in:
parent
a29534b531
commit
eea1b95ead
2 changed files with 6 additions and 0 deletions
|
@ -479,6 +479,7 @@ GLAPI void glPushMatrix();
|
|||
GLAPI void glPopMatrix();
|
||||
GLAPI void glMultMatrixd(GLdouble const* matrix);
|
||||
GLAPI void glMultMatrixf(GLfloat const* matrix);
|
||||
GLAPI void glRotated(GLdouble angle, GLdouble x, GLdouble y, GLdouble z);
|
||||
GLAPI void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z);
|
||||
GLAPI void glScaled(GLdouble x, GLdouble y, GLdouble z);
|
||||
GLAPI void glScalef(GLfloat x, GLfloat y, GLfloat z);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue