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

LibWeb/WebGL: Implement error handling and getError()

This commit is contained in:
Luke Wilde 2022-06-13 16:54:27 +01:00 committed by Linus Groh
parent 528c7bea03
commit a6617e1096
3 changed files with 39 additions and 0 deletions

View file

@ -41,6 +41,8 @@ interface mixin WebGLRenderingContextBase {
undefined frontFace(GLenum mode);
GLenum getError();
undefined polygonOffset(GLfloat factor, GLfloat units);
undefined scissor(GLint x, GLint y, GLsizei width, GLsizei height);