diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-01-15 13:50:13 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-01-15 13:50:13 +0200 |
commit | a176f9eb36033196040443991a0723c39886b8a2 (patch) | |
tree | 9951d81ea02d1355d15ccefd09379a2737efaf44 /src/utility.h | |
parent | 83e083a667d8423ea27555ed58cc90a5f57d103f (diff) | |
download | dragonfireclient-a176f9eb36033196040443991a0723c39886b8a2.tar.xz |
generate-time lighting optimization
Diffstat (limited to 'src/utility.h')
-rw-r--r-- | src/utility.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/utility.h b/src/utility.h index 008a95c38..e2a6afdea 100644 --- a/src/utility.h +++ b/src/utility.h @@ -1323,10 +1323,17 @@ private: MutexedQueue< GetRequest<Key, T, Caller, CallerData> > m_queue; }; -// Pseudo-random (VC++ rand() sucks) +/* + Pseudo-random (VC++ rand() sucks) +*/ int myrand(void); void mysrand(unsigned seed); #define MYRAND_MAX 32767 +/* + TODO: Some kind of a thing that stores arbitary data related to + 2D coordinate points +*/ + #endif |