mirror of
https://github.com/servo/servo
synced 2026-05-14 19:06:31 +02:00
11 lines
277 B
Plaintext
11 lines
277 B
Plaintext
//
|
|
// WebGL IDL definitions scraped from the Khronos specification:
|
|
// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.7
|
|
//
|
|
|
|
interface WebGLActiveInfo {
|
|
readonly attribute GLint size;
|
|
readonly attribute GLenum type;
|
|
readonly attribute DOMString name;
|
|
};
|