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

LibGL: Implement glNormal3d

This commit is contained in:
Jelle Raaijmakers 2022-09-09 02:17:15 +02:00 committed by Linus Groh
parent 1aa1c89afa
commit 70ea2a2258
2 changed files with 6 additions and 0 deletions

View file

@ -666,6 +666,11 @@ void glNewList(GLuint list, GLenum mode)
return g_gl_context->gl_new_list(list, mode);
}
void glNormal3d(GLdouble nx, GLdouble ny, GLdouble nz)
{
g_gl_context->gl_normal(nx, ny, nz);
}
void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz)
{
g_gl_context->gl_normal(nx, ny, nz);