Web/API/WEBGL debug shaders/getTranslatedShaderSource

From Get docs


The WEBGL_debug_shaders.getTranslatedShaderSource() method is part of the WebGL API and allows you to debug a translated shader.

Syntax

gl.getExtension('WEBGL_debug_shaders').getTranslatedShaderSource(shader);

Parameters

shader
A WebGLShader to get the translated source from.

Return value

A String containing the translated shader source. An empty string is returned, if:

Examples

var canvas = document.getElementById('canvas');
var gl = canvas.getContext('webgl');

var shader = gl.createShader(gl.FRAGMENT_SHADER);
gl.shaderSource(shader, 'void main() { gl_FragColor = vec4(gl_FragCoord.x, 0.0, 0.0, 1.0); }');
gl.compileShader(shader);

var src = gl.getExtension('WEBGL_debug_shaders').getTranslatedShaderSource(shader);
console.log(src);
// "void main(){
// (gl_FragColor = vec4(gl_FragCoord.x, 0.0, 0.0, 1.0));
// }"

Specifications

Specification Status Comment
WEBGL_debug_shadersThe definition of 'WEBGL_debug_shaders.getTranslatedShaderSource' in that specification. Recommendation Initial definition.

Browser compatibility

The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
getTranslatedShaderSource Chrome

Full support 47

Edge

Full support 79

Firefox Full support 30

Notes' Disabled'

Full support 30

Notes' Disabled'

Notes' The extension is activated by default to privileged contexts (chrome context). Disabled' From version 30: this feature is behind the webgl.enable-privileged-extensions preference (needs to be set to true). To change preferences in Firefox, visit about:config.

IE

?

Opera

?

Safari

?

WebView Android

Full support 47

Chrome Android

Full support 47

Firefox Android

?

Opera Android

?

Safari iOS

?

Samsung Internet Android

Full support 5.0

Legend

Full support  
Full support
Compatibility unknown  
Compatibility unknown
See implementation notes.'
See implementation notes.
User must explicitly enable this feature.'
User must explicitly enable this feature.


See also