1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:17:45 +00:00

LibGL: Implement glScalef

This commit is contained in:
Jesse Buhagiar 2021-04-24 22:11:48 +10:00 committed by Andreas Kling
parent 55b3ecfbd3
commit ea0df0b5da
5 changed files with 24 additions and 0 deletions

View file

@ -30,6 +30,11 @@ void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z)
g_gl_context->gl_rotate(angle, x, y, z);
}
void glScalef(GLfloat x, GLfloat y, GLfloat z)
{
g_gl_context->gl_scale(x, y, z);
}
void glTranslatef(GLfloat x, GLfloat y, GLfloat z)
{
g_gl_context->gl_translate(x, y, z);