LibGL: Implement glScalef

This commit is contained in:
Jesse Buhagiar 2021-04-24 22:11:48 +10:00 committed by Andreas Kling
commit ea0df0b5da
Notes: sideshowbarker 2024-07-18 18:32:34 +09:00
5 changed files with 24 additions and 0 deletions

View file

@ -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);