mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:27:45 +00:00
LibGL: Implement glScalef
This commit is contained in:
parent
55b3ecfbd3
commit
ea0df0b5da
5 changed files with 24 additions and 0 deletions
|
@ -83,6 +83,7 @@ GLAPI void glMatrixMode(GLenum mode);
|
|||
GLAPI void glPushMatrix();
|
||||
GLAPI void glPopMatrix();
|
||||
GLAPI void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z);
|
||||
GLAPI void glScalef(GLfloat x, GLfloat y, GLfloat z);
|
||||
GLAPI void glTranslatef(GLfloat x, GLfloat y, GLfloat z);
|
||||
GLAPI void glVertex3f(GLfloat x, GLfloat y, GLfloat z);
|
||||
GLAPI void glViewport(GLint x, GLint y, GLsizei width, GLsizei height);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue