ladybird/Libraries/LibWeb/WebGL/WebGLActiveInfo.idl

10 lines
255 B
Text
Raw Normal View History

2024-11-13 10:15:42 +01:00
#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;
2024-11-13 10:15:42 +01:00
};