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

WebGLProgram

The WebGLProgram is part of the WebGL API and is a combination of two compiled WebGLShaders consisting of a vertex shader and a fragment shader (both written in GLSL).

interface WebGLProgram {}
var WebGLProgram: {
prototype: WebGLProgram;
new (): WebGLProgram;
}
;