test: Fix compilation of render-trapezoid-image

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=71768
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Chris Wilson 2013-11-19 09:47:15 +00:00
parent 12f4c48d39
commit bb3ea102ca
4 changed files with 4 additions and 7 deletions

View File

@ -282,8 +282,7 @@ int main(int argc, char **argv)
test_init(&test, argc, argv);
for (i = 0; i <= DEFAULT_ITERATIONS; i++) {
int reps = REPS(i);
int sets = SETS(i);
int reps = REPS(i), sets = SETS(i);
enum target t;
for (t = TARGET_FIRST; t <= TARGET_LAST; t++) {

View File

@ -246,8 +246,7 @@ int main(int argc, char **argv)
test_init(&test, argc, argv);
for (i = 0; i <= DEFAULT_ITERATIONS; i++) {
int reps = REPS(i);
int sets = SETS(i);
int reps = REPS(i), sets = SETS(i);
enum target t;
for (t = TARGET_FIRST; t <= TARGET_LAST; t++) {

View File

@ -262,8 +262,7 @@ int main(int argc, char **argv)
test_init(&test, argc, argv);
for (i = 0; i <= DEFAULT_ITERATIONS; i++) {
int reps = REPS(i);
int sets = SETS(i);
int reps = REPS(i), sets = SETS(i);
enum target t;
for (t = TARGET_FIRST; t <= TARGET_LAST; t++) {

View File

@ -585,7 +585,7 @@ int main(int argc, char **argv)
test_init(&test, argc, argv);
for (i = 0; i <= DEFAULT_ITERATIONS; i++) {
int reps = REPS(i), SETS(i);
int reps = REPS(i), sets = SETS(i);
for (target = TARGET_FIRST; target <= TARGET_LAST; target++) {
pixel_tests(&test, reps, sets, target, 0);