- Added more information to build messages

This commit is contained in:
Christophe Riccio
2016-09-02 00:30:37 +02:00
parent 10dc67e2b5
commit a609a0fea6
86 changed files with 165 additions and 113 deletions

View File

@@ -529,8 +529,8 @@ namespace bitfieldReverse
{
int Error = 0;
Error += perf32(Samples);
Error += perf64(Samples);
Error += perf32(static_cast<glm::uint32>(Samples));
Error += perf64(static_cast<glm::uint64>(Samples));
return Error;
}
@@ -1459,7 +1459,7 @@ namespace bitCount
// bitCount - TimeIf
{
for(std::size_t i = 0, n = v.size(); i < n; ++i)
v[i] = bitCount_if(i);
v[i] = bitCount_if(static_cast<int>(i));
}
std::clock_t TimestampsB = std::clock();

View File

@@ -1,4 +1,4 @@
#define GLM_MESSAGES
#define GLM_FORCE_MESSAGES
#define GLM_FORCE_SWIZZLE
#include <glm/glm.hpp>

View File

@@ -1,4 +1,4 @@
#define GLM_MESSAGES
#define GLM_FORCE_MESSAGES
#include <glm/vec3.hpp>
#include <cstdio>