This commit is contained in:
Jack Andersen 2016-07-03 17:43:43 -10:00
commit 24a07ae419
3 changed files with 8 additions and 3 deletions

View File

@ -43,8 +43,11 @@ public:
inline s32 Range(s32 min, s32 max) inline s32 Range(s32 min, s32 max)
{ {
const s32 rand = Next(); s32 diff = max - min;
return min + (rand / ((min - max) + 1)) - rand; s32 rand = -1;
while (rand < 0)
rand = s32((Next() << 16) | Next());
return rand % diff + min;
} }
static CRandom16* GetRandomNumber() {return g_randomNumber;} static CRandom16* GetRandomNumber() {return g_randomNumber;}
@ -58,7 +61,7 @@ class CGlobalRandom
static CGlobalRandom* g_currentGlobalRandom; static CGlobalRandom* g_currentGlobalRandom;
public: public:
CGlobalRandom(CRandom16& rand) CGlobalRandom(CRandom16& rand)
: m_random(rand), m_prev(g_currentGlobalRandom) : m_random(rand), m_prev(g_currentGlobalRandom)
{ {
g_currentGlobalRandom = this; g_currentGlobalRandom = this;
CRandom16::SetRandomNumber(&m_random); CRandom16::SetRandomNumber(&m_random);

View File

@ -72,6 +72,7 @@ BOO_GLSL_BINDING_HEAD
static const char* FS_GLSL_NOTEX = static const char* FS_GLSL_NOTEX =
"#version 330\n" "#version 330\n"
BOO_GLSL_BINDING_HEAD
"struct VertToFrag\n" "struct VertToFrag\n"
"{\n" "{\n"
" vec4 color;\n" " vec4 color;\n"

View File

@ -173,6 +173,7 @@ BOO_GLSL_BINDING_HEAD
static const char* FS_GLSL_NOTEX = static const char* FS_GLSL_NOTEX =
"#version 330\n" "#version 330\n"
BOO_GLSL_BINDING_HEAD
"struct VertToFrag\n" "struct VertToFrag\n"
"{\n" "{\n"
" vec4 color;\n" " vec4 color;\n"