WebGLRenderingContext: shaderSource() Methode
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Hinweis: Dieses Feature ist verfügbar in Web Workers.
Die WebGLRenderingContext.shaderSource()
Methode der WebGL-API legt den Quellcode eines
WebGLShader
fest.
Syntax
js
shaderSource(shader, source)
Parameter
shader
-
Ein
WebGLShader
-Objekt, in dem der Quellcode festgelegt wird. source
-
Ein String, der den festzulegenden GLSL-Quellcode enthält.
Rückgabewert
Keiner (undefined
).
Beispiele
js
const shader = gl.createShader(gl.VERTEX_SHADER);
gl.shaderSource(shader, originalSource);
const source = gl.getShaderSource(shader);
Spezifikationen
Specification |
---|
WebGL Specification # 5.14.9 |
Browser-Kompatibilität
BCD tables only load in the browser