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

LibWeb/WebGL: Implement WebGLRenderingContextBase.lineWidth()

This commit is contained in:
Luke Wilde 2022-06-13 16:55:21 +01:00 committed by Linus Groh
parent a6617e1096
commit d9ef228c76
3 changed files with 15 additions and 0 deletions

View file

@ -48,6 +48,7 @@ public:
GLenum get_error();
void line_width(GLfloat width);
void polygon_offset(GLfloat factor, GLfloat units);
void scissor(GLint x, GLint y, GLsizei width, GLsizei height);