Unverified Commit 2df8c712 by John Kessenich Committed by GitHub

Merge pull request #2154 from GMNGeoffrey/patch-1

Add missing braces to if condition
parents 8e26c5f5 9b3baf98
......@@ -8983,9 +8983,10 @@ void TBuiltIns::identifyBuiltIns(int version, EProfile profile, const SpvVersion
}
break;
case EShLangIntersect:
if (profile != EEsProfile && version >= 460)
if (profile != EEsProfile && version >= 460) {
symbolTable.relateToOperator("reportIntersectionNV", EOpReportIntersection);
symbolTable.relateToOperator("reportIntersectionEXT", EOpReportIntersection);
}
break;
case EShLangAnyHit:
if (profile != EEsProfile && version >= 460) {
......
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