mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 21:07:34 +00:00
LibGL: Implement glOrtho and underlying functions
This commit is contained in:
parent
f07a7f7b94
commit
f601f12801
5 changed files with 43 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue