summaryrefslogtreecommitdiff
path: root/indra/newview/noise.h
diff options
context:
space:
mode:
authorXiaohong Bao <bao@lindenlab.com>2013-08-19 16:09:28 -0600
committerXiaohong Bao <bao@lindenlab.com>2013-08-19 16:09:28 -0600
commitd8c02bf06250015b8cb0bcc9c0d8445cfb6acf1c (patch)
tree2e7966158d684828422c2b9f0d4129fa1ef1b395 /indra/newview/noise.h
parent4290365ebbf5505bee4fbed8043996fa7687fd03 (diff)
parent171089207b528ab80a954292c127ba77254ee927 (diff)
Merge
Diffstat (limited to 'indra/newview/noise.h')
-rwxr-xr-xindra/newview/noise.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/noise.h b/indra/newview/noise.h
index 0923bffcf2..b3efad73c5 100755
--- a/indra/newview/noise.h
+++ b/indra/newview/noise.h
@@ -310,6 +310,8 @@ static void normalize3(F32 v[3])
static void init(void)
{
+ // we want repeatable noise (e.g. for stable terrain texturing), so seed with known value
+ srand(42);
int i, j, k;
for (i = 0 ; i < B ; i++) {
@@ -340,6 +342,9 @@ static void init(void)
for (j = 0 ; j < 3 ; j++)
g3[B + i][j] = g3[i][j];
}
+
+ // reintroduce entropy
+ srand(time(NULL)); // Flawfinder: ignore
}
#undef B