LibWeb: Add WebGLObject interface

This commit is contained in:
Jelle Raaijmakers 2024-11-13 09:31:46 +01:00 committed by Andreas Kling
commit e6ee7f3e64
Notes: github-actions[bot] 2024-11-13 10:43:42 +00:00
7 changed files with 59 additions and 0 deletions

View file

@ -0,0 +1,5 @@
// https://registry.khronos.org/webgl/specs/latest/1.0/#5.3
[Exposed=(Window,Worker)]
interface WebGLObject {
attribute USVString label;
};