Creates a new Shader
Rendering context
Options to initialize the shader with. See ShaderOptions.
Rendering context
Handle to the native WebGL program.
Delete the underlying WebGLProgramm
Returns the attribute index for a attribute variable name in the shader. Calling this method has no performance caveat.
Returns the WebGLUniformLocation for a uniform variable name in the shader. Calling this method has no performance caveat.
Send a float to the shader.
WebGLUniformLocation of the variable.
value to send
Send a 2x2 Matrix to the shader.
WebGLUniformLocation of the variable.
Array representing the matrix
Send a 3x3 Matrix to the shader.
WebGLUniformLocation of the variable.
Array representing the matrix
Send a 4x4 Matrix to the shader.
WebGLUniformLocation of the variable.
Array representing the matrix
Bind a texture unit to a Sampler2D variable,
WebGLUniformLocation of the variable.
Index of Texture unit (zero-based)
Set a single uniform by name.
Name of the uniform variable in the shader
Value to set
Set multiple uniforms from a UniformCollection
Key is the uniform name, value the uniform value to set.
Send a Vector2 to the shader.
WebGLUniformLocation of the variable.
Vector as an array
Send a Vector3 to the shader.
WebGLUniformLocation of the variable.
Vector as an array
Send a Vector4 to the shader.
WebGLUniformLocation of the variable.
Vector as an array
Use this shader if it is not currently in use.
Loads shader sources from files via the fetch API and initializes the shader with them.
Rendering context.
Url to the vertex shader file.
Url to the fragment shader file.
Additional shader options.
Generated using TypeDoc
Describes a shader programm, which can be used for drawing.