LibWeb: Add WebGLTexture

This commit is contained in:
Jelle Raaijmakers 2024-11-13 10:08:30 +01:00 committed by Andreas Kling
commit f2a1643650
Notes: github-actions[bot] 2024-11-13 10:43:06 +00:00
7 changed files with 55 additions and 0 deletions

View file

@ -0,0 +1,6 @@
#import <WebGL/WebGLObject.idl>
// https://registry.khronos.org/webgl/specs/latest/1.0/#5.9
[Exposed=(Window,Worker)]
interface WebGLTexture : WebGLObject {
};