Fixed C++98 build

master
Christophe Riccio ago%!(EXTRA string=10 years)
parent e1c3c531dd
commit a472f50767
  1. 6
      test/gtc/gtc_bitfield.cpp

@ -634,8 +634,10 @@ namespace bitfieldInterleave
# if(GLM_ARCH != GLM_ARCH_PURE)
{
// SIMD
std::vector<__m128i> SimdData(x_max * y_max);
std::vector<__m128i> SimdParam(x_max * y_max);
std::vector<__m128i> SimdData;
SimdData.resize(x_max * y_max);
std::vector<__m128i> SimdParam;
SimdParam.resize(x_max * y_max);
for(int i = 0; i < SimdParam.size(); ++i)
SimdParam[i] = _mm_set_epi32(i % x_max, 0, i / y_max, 0);

Loading…
Cancel
Save