summaryrefslogtreecommitdiff
path: root/test/region-test.c
diff options
context:
space:
mode:
authorSiarhei Siamashka <siarhei.siamashka@gmail.com>2012-11-24 23:22:48 +0200
committerSiarhei Siamashka <siarhei.siamashka@gmail.com>2012-12-06 17:20:31 +0200
commit309e66f047cab0951d8e42628dcd181e2d14c58d (patch)
tree650fd3cd26419eeb359f558c91e56b72de44ae70 /test/region-test.c
parentd6545a2fc6f65c4959c6f85a15e95675347c0940 (diff)
downloadpixman-309e66f047cab0951d8e42628dcd181e2d14c58d.tar.gz
test: Search/replace 'lcg_*' -> 'prng_*'
The 'lcg' prefix is going to be misleading if we replace PRNG algorithm.
Diffstat (limited to 'test/region-test.c')
-rw-r--r--test/region-test.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/region-test.c b/test/region-test.c
index 9d5a41e..87010f7 100644
--- a/test/region-test.c
+++ b/test/region-test.c
@@ -91,10 +91,10 @@ main ()
/* Add some random rectangles */
for (j = 0; j < 64; j++)
pixman_region32_union_rect (&r1, &r1,
- lcg_rand_n (image_size),
- lcg_rand_n (image_size),
- lcg_rand_n (25),
- lcg_rand_n (25));
+ prng_rand_n (image_size),
+ prng_rand_n (image_size),
+ prng_rand_n (25),
+ prng_rand_n (25));
/* Clip to image size */
pixman_region32_init_rect (&r2, 0, 0, image_size, image_size);