mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:07:46 +00:00
LibGL: Implement glTranslated
This commit is contained in:
parent
9c9fa33495
commit
17c109f5d7
2 changed files with 6 additions and 0 deletions
|
@ -99,6 +99,11 @@ void glScalef(GLfloat x, GLfloat y, GLfloat z)
|
|||
g_gl_context->gl_scale(x, y, z);
|
||||
}
|
||||
|
||||
void glTranslated(GLdouble x, GLdouble y, GLdouble z)
|
||||
{
|
||||
g_gl_context->gl_translate(x, y, z);
|
||||
}
|
||||
|
||||
void glTranslatef(GLfloat x, GLfloat y, GLfloat z)
|
||||
{
|
||||
g_gl_context->gl_translate(x, y, z);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue