Removed an inline.

This commit is contained in:
Miguel Angel Astor Romero
2017-02-10 13:33:19 -04:00
parent 79b2aa4553
commit 85ff1de130

View File

@@ -14,7 +14,7 @@ using glm::pi;
const float PDF = (1.0f / (2.0f * pi<float>())); const float PDF = (1.0f / (2.0f * pi<float>()));
inline float random01() { float random01() {
return static_cast<float>(rand() % 1024) / 1025.0f; return static_cast<float>(rand() % 1024) / 1025.0f;
} }