diff options
author | Nicolai Hähnle <[email protected]> | 2009-10-07 20:39:22 +0200 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2009-10-07 20:39:22 +0200 |
commit | 5b4c0b864a25fa193e7ba828cf5ce483ca05bd4e (patch) | |
tree | f462528c24889bee0665451e9e32664ecf2add3c /progs/tests/random.c | |
parent | 3f5a316f36e2d376104640033c8bcefef3810ef4 (diff) | |
parent | 9fde81bb20bbfd2f8da80749cb84d890843a7bc2 (diff) |
Merge branch 'mesa_7_6_branch'
Diffstat (limited to 'progs/tests/random.c')
-rw-r--r-- | progs/tests/random.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/tests/random.c b/progs/tests/random.c index 4023674c05f..604b4d4088c 100644 --- a/progs/tests/random.c +++ b/progs/tests/random.c @@ -257,11 +257,11 @@ RandomPrimitive(void) Vcount++; for (i = 0; i < len; i++) { + int k = RandomInt(9); Vbuffer[Vcount].v[0] = RandomFloat(-3, 3); Vbuffer[Vcount].v[1] = RandomFloat(-3, 3); Vbuffer[Vcount].v[2] = RandomFloat(-3, 3); Vbuffer[Vcount].v[3] = RandomFloat(-3, 3); - int k = RandomInt(9); switch (k) { case 0: glVertex2fv(Vbuffer[Vcount].v); |