Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

WebGLActiveInfo

Part of the WebGL API and represents the information returned by calling the WebGLRenderingContext.getActiveAttrib() and WebGLRenderingContext.getActiveUniform() methods.

interface WebGLActiveInfo {
readonly name: string;
readonly size: GLint;
readonly type: GLenum;
}
var WebGLActiveInfo: {
prototype: WebGLActiveInfo;
new (): WebGLActiveInfo;
}
;

§Properties

§
readonly name: string
[src]
§
readonly size: GLint
[src]
§
readonly type: GLenum
[src]