progs/test: Fix MSVC build.
authorVinson Lee <vlee@vmware.com>
Wed, 7 Oct 2009 13:54:31 +0000 (07:54 -0600)
committerBrian Paul <brianp@vmware.com>
Wed, 7 Oct 2009 13:54:31 +0000 (07:54 -0600)
progs/tests/random.c

index 4023674..604b4d4 100644 (file)
@@ -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);