mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 21:17:45 +00:00
LibGL: Implement glScaled
This commit is contained in:
parent
9dbc8d7e3c
commit
07bf37be75
3 changed files with 21 additions and 15 deletions
|
@ -371,6 +371,7 @@ GLAPI void glPushMatrix();
|
|||
GLAPI void glPopMatrix();
|
||||
GLAPI void glMultMatrixf(GLfloat const* matrix);
|
||||
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);
|
||||
GLAPI void glTranslatef(GLfloat x, GLfloat y, GLfloat z);
|
||||
GLAPI void glVertex2d(GLdouble x, GLdouble y);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue