diff --git a/content/canvas/src/WebGLContextGL.cpp b/content/canvas/src/WebGLContextGL.cpp index 59cfcc5b790..ef9b42ba407 100644 --- a/content/canvas/src/WebGLContextGL.cpp +++ b/content/canvas/src/WebGLContextGL.cpp @@ -2863,7 +2863,7 @@ WebGLContext::CompileShader(nsIWebGLShader *sobj) nsPromiseFlatCString src(shader->Source()); const char *s = src.get(); - if (!ShCompile(compiler, &s, 1, EShOptSimple, debugFlags)) { + if (!ShCompile(compiler, &s, 1, EShOptNone, debugFlags)) { const char* info = ShGetInfoLog(compiler); if (info) { shader->SetTranslationFailure(nsDependentCString(info));