- Added more information to build messages
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#define GLM_MESSAGES
|
||||
#define GLM_FORCE_MESSAGES
|
||||
#define GLM_FORCE_SWIZZLE
|
||||
#include <glm/glm.hpp>
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#define GLM_MESSAGES
|
||||
#define GLM_FORCE_MESSAGES
|
||||
#include <glm/vec3.hpp>
|
||||
#include <cstdio>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user