LibWeb/WebGL: Stub missing includes for WebGLRenderingContext

This commit is contained in:
Jamie Mansfield 2024-08-17 01:26:02 +01:00 committed by Andreas Kling
commit bb95a48035
Notes: github-actions[bot] 2024-08-19 07:05:40 +00:00
3 changed files with 40 additions and 0 deletions

View file

@ -1,4 +1,5 @@
#import <WebGL/WebGLRenderingContextBase.idl>
#import <WebGL/WebGLRenderingContextOverloads.idl>
// https://registry.khronos.org/webgl/specs/latest/1.0/#5.14
[Exposed=(Window,Worker)]
@ -6,3 +7,4 @@ interface WebGLRenderingContext {
};
WebGLRenderingContext includes WebGLRenderingContextBase;
WebGLRenderingContext includes WebGLRenderingContextOverloads;