mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-12 02:59:45 +00:00
LibGL: Implement glTranslated
This commit is contained in:
parent
9c9fa33495
commit
17c109f5d7
Notes:
sideshowbarker
2024-07-17 22:51:31 +09:00
Author: https://github.com/gmta
Commit: 17c109f5d7
Pull-request: https://github.com/SerenityOS/serenity/pull/11154
Reviewed-by: https://github.com/sunverwerth ✅
2 changed files with 6 additions and 0 deletions
|
@ -375,6 +375,7 @@ GLAPI void glMultMatrixf(GLfloat const* matrix);
|
|||
GLAPI void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z);
|
||||
GLAPI void glScaled(GLdouble x, GLdouble y, GLdouble z);
|
||||
GLAPI void glScalef(GLfloat x, GLfloat y, GLfloat z);
|
||||
GLAPI void glTranslated(GLdouble x, GLdouble y, GLdouble z);
|
||||
GLAPI void glTranslatef(GLfloat x, GLfloat y, GLfloat z);
|
||||
GLAPI void glVertex2d(GLdouble x, GLdouble y);
|
||||
GLAPI void glVertex2dv(const GLdouble* v);
|
||||
|
|
|
@ -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