mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-11 18:06:13 +00:00
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:
parent
865b7821e3
commit
93550043ca
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user