mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-03 14:50:18 +00:00
LibGL: Implement glScalef
This commit is contained in:
parent
55b3ecfbd3
commit
ea0df0b5da
Notes:
sideshowbarker
2024-07-18 18:32:34 +09:00
Author: https://github.com/Quaker762
Commit: ea0df0b5da
Pull-request: https://github.com/SerenityOS/serenity/pull/6375
Reviewed-by: https://github.com/Hendiadyoin1
Reviewed-by: https://github.com/IdanHo
Reviewed-by: https://github.com/alimpfard
Reviewed-by: https://github.com/ccapitalK
Reviewed-by: https://github.com/gmta
Reviewed-by: https://github.com/sunverwerth ✅
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