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

LibGL: Implement glLoadMatrixd

This commit is contained in:
Jelle Raaijmakers 2021-12-01 16:46:55 +01:00 committed by Andreas Kling
parent 506abf2a61
commit 22f8294a57
2 changed files with 33 additions and 9 deletions

View file

@ -366,6 +366,7 @@ GLAPI void glGenTextures(GLsizei n, GLuint* textures);
GLAPI GLenum glGetError();
GLAPI GLubyte* glGetString(GLenum name);
GLAPI void glLoadIdentity();
GLAPI void glLoadMatrixd(const GLdouble* matrix);
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);