mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-01 14:18:15 +00:00
10 lines
255 B
Plaintext
10 lines
255 B
Plaintext
#import <WebGL/Types.idl>
|
|
|
|
// https://registry.khronos.org/webgl/specs/latest/1.0/#5.11
|
|
[Exposed=(Window,Worker)]
|
|
interface WebGLActiveInfo {
|
|
readonly attribute GLint size;
|
|
readonly attribute GLenum type;
|
|
readonly attribute DOMString name;
|
|
};
|