Fixed compile warning in reflection.cpp for ENABLE_HLSL = 0 build. [-Wunused-parameter]

This commit is contained in:
Evgeny Proydakov 2020-12-15 18:05:32 +03:00
parent c0bcfaf3ba
commit dc8b1d0264

View File

@ -1138,6 +1138,8 @@ void TReflection::buildCounterIndices(const TIntermediate& intermediate)
if (index >= 0)
indexToUniformBlock[i].counterIndex = index;
}
#else
(void)intermediate;
#endif
}