glslang: disable legacy ARB_compatibility for GLSL 1.40+

This commit is contained in:
Alex Szpakowski
2020-04-26 22:57:17 -03:00
parent e4b84224fc
commit 3a8f6a35a2
@@ -57,9 +57,9 @@
namespace glslang {
// TODO: ARB_Compatability: do full extension support
const bool ARBCompatibility = true;
const bool ARBCompatibility = false;
const bool ForwardCompatibility = false;
const bool ForwardCompatibility = true;
// change this back to false if depending on textual spellings of texturing calls when consuming the AST
// Using PureOperatorBuiltins=false is deprecated.