summaryrefslogtreecommitdiff
path: root/tests/kms_cursor_legacy.c
diff options
context:
space:
mode:
authorMaarten Lankhorst <maarten.lankhorst@linux.intel.com>2017-09-21 12:53:27 +0200
committerMaarten Lankhorst <maarten.lankhorst@linux.intel.com>2017-10-02 11:30:18 +0200
commit7df7e3bda6a206c15044dfd9804eddeee29d981b (patch)
tree2eb4a07aeca915e08224a0070b29a7922c05be96 /tests/kms_cursor_legacy.c
parent5f6806472c2d413dec850e60ef452f5d55cc9912 (diff)
tests: Stop looking at plane private members
Most of these tests have no reason to look at those members, so try other ways of getting the information. Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Reviewed-by: Mika Kahola <mika.kahola@intel.com>
Diffstat (limited to 'tests/kms_cursor_legacy.c')
-rw-r--r--tests/kms_cursor_legacy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c
index ba7c3f51..65a001a9 100644
--- a/tests/kms_cursor_legacy.c
+++ b/tests/kms_cursor_legacy.c
@@ -784,7 +784,7 @@ static bool skip_on_unsupported_nonblocking_modeset(igt_display_t *display)
/* Force the next state to update all crtc's, to synchronize with the nonblocking modeset. */
for_each_pipe(display, pipe)
- display->pipes[pipe].mode_changed = true;
+ igt_pipe_refresh(display, pipe, false);
return false;
}
@@ -971,8 +971,8 @@ static void two_screens_flip_vs_cursor(igt_display_t *display, int nloops, bool
if (modeset) {
/* wait for pending modeset and page flip to complete, to prevent -EBUSY */
- display->pipes[pipe].mode_changed = true;
- display->pipes[pipe2].mode_changed = true;
+ igt_pipe_refresh(display, pipe, false);
+ igt_pipe_refresh(display, pipe2, false);
igt_display_commit2(display, COMMIT_ATOMIC);
}
}