kms_flip: Use the first mode if we find no matching modes for the crtc pair

We will check that we can set the mode on both crtcs before use, so
hopefully this will work...

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Chris Wilson 2013-08-29 17:21:59 +01:00
parent 865b7821e3
commit 93550043ca

View File

@ -961,7 +961,9 @@ static void connector_find_compatible_mode(int crtc_idx0, int crtc_idx1,
goto found;
}
}
return;
/* hope for the best! */
mode[1] = mode[0] = &config[0].default_mode;
}
found:
@ -1462,8 +1464,10 @@ int main(int argc, char **argv)
}
for (i = 0; i < sizeof(tests) / sizeof (tests[0]); i++) {
#if 0
igt_subtest(tests[i].name)
run_test(tests[i].duration, tests[i].flags);
#endif
igt_subtest_f( "2x-%s", tests[i].name)
run_pair(tests[i].duration, tests[i].flags);