1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:37:35 +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

@ -65,3 +65,8 @@ void glFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLd
{
g_gl_context->gl_frustum(left, right, bottom, top, nearVal, farVal);
}
void glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble nearVal, GLdouble farVal)
{
g_gl_context->gl_ortho(left, right, bottom, top, nearVal, farVal);
}