progs/tests: Use rand() instead of random().
authorJosé Fonseca <jfonseca@vmware.com>
Fri, 16 Oct 2009 10:39:29 +0000 (11:39 +0100)
committerVinson Lee <vlee@vmware.com>
Thu, 3 Dec 2009 23:32:45 +0000 (15:32 -0800)
More portable. Same implementation on Linux.
(cherry picked from commit 699260b19535abaa3af0a5d33eb039e3d6a30ce9)

progs/tests/prog_parameter.c

index 6dd956c4023570aa143b2c5e16de6be88ddf916c..6123ef7c1627a7ea9c4ba8abc0ce9cc8ba73673d 100644 (file)
@@ -116,7 +116,7 @@ static int set_parameter_batch( GLsizei count, GLfloat * param,
 
 
    for ( i = 0 ; i < (4 * count) ; i++ ) {
-      param[i] = (GLfloat) random() / (GLfloat) random();
+      param[i] = (GLfloat) rand() / (GLfloat) rand();
    }
 
    /* Try using the "classic" interface.