mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 23:56:06 +00:00
LibWeb: Add stubbed-out WebGL2RenderingContext
This commit is contained in:
parent
7868b03d90
commit
af536e1192
Notes:
github-actions[bot]
2024-12-06 14:36:41 +00:00
Author: https://github.com/ADKaster
Commit: af536e1192
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2809
Reviewed-by: https://github.com/kalenikaliaksandr ✅
19 changed files with 851 additions and 17 deletions
13
Libraries/LibWeb/WebGL/WebGL2RenderingContext.idl
Normal file
13
Libraries/LibWeb/WebGL/WebGL2RenderingContext.idl
Normal file
|
@ -0,0 +1,13 @@
|
|||
#import <HTML/HTMLCanvasElement.idl>
|
||||
#import <WebGL/WebGLRenderingContextBase.idl>
|
||||
#import <WebGL/WebGL2RenderingContextBase.idl>
|
||||
#import <WebGL/WebGL2RenderingContextOverloads.idl>
|
||||
|
||||
// https://registry.khronos.org/webgl/specs/latest/2.0/#3.7
|
||||
[Exposed=(Window,Worker)]
|
||||
interface WebGL2RenderingContext {
|
||||
};
|
||||
|
||||
WebGL2RenderingContext includes WebGLRenderingContextBase;
|
||||
WebGL2RenderingContext includes WebGL2RenderingContextBase;
|
||||
WebGL2RenderingContext includes WebGL2RenderingContextOverloads;
|
Loading…
Add table
Add a link
Reference in a new issue