Commit 9f2236e5 by John Kessenich

Build: shut up warning to add unnecessary parens.

parent 74426f75
...@@ -5144,7 +5144,7 @@ void TBuiltIns::initialize(int version, EProfile profile, const SpvVersion& spvV ...@@ -5144,7 +5144,7 @@ void TBuiltIns::initialize(int version, EProfile profile, const SpvVersion& spvV
} }
//E_SPV_NV_compute_shader_derivatives //E_SPV_NV_compute_shader_derivatives
if (profile == EEsProfile && version >= 320 || profile != EEsProfile && version >= 450) { if ((profile == EEsProfile && version >= 320) || (profile != EEsProfile && version >= 450)) {
stageBuiltins[EShLangCompute].append(derivatives); stageBuiltins[EShLangCompute].append(derivatives);
stageBuiltins[EShLangCompute].append(derivativeControls); stageBuiltins[EShLangCompute].append(derivativeControls);
stageBuiltins[EShLangCompute].append("\n"); stageBuiltins[EShLangCompute].append("\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment