LibGL: Implement glLineWidth

This commit is contained in:
Jelle Raaijmakers 2021-12-01 16:51:40 +01:00 committed by Andreas Kling
commit fbed7a5ba8
Notes: sideshowbarker 2024-07-17 22:51:16 +09:00
5 changed files with 21 additions and 1 deletions

View file

@ -467,6 +467,7 @@ GLAPI void glNormal3fv(GLfloat const* v);
GLAPI void glRasterPos2i(GLint x, GLint y);
GLAPI void glMaterialf(GLenum face, GLenum pname, GLfloat param);
GLAPI void glMaterialfv(GLenum face, GLenum pname, GLfloat const* params);
GLAPI void glLineWidth(GLfloat width);
#ifdef __cplusplus
}