1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:37:45 +00:00

LibGL: Implement glOrtho and underlying functions

This commit is contained in:
Ali Mohammad Pur 2021-04-24 17:40:15 +04:30 committed by Andreas Kling
parent f07a7f7b94
commit f601f12801
5 changed files with 43 additions and 0 deletions

View file

@ -81,6 +81,7 @@ GLAPI GLubyte* glGetString(GLenum name);
GLAPI void glLoadIdentity();
GLAPI void glLoadMatrixf(const GLfloat* matrix);
GLAPI void glMatrixMode(GLenum mode);
GLAPI void glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble nearVal, GLdouble farVal);
GLAPI void glPushMatrix();
GLAPI void glPopMatrix();
GLAPI void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z);