summaryrefslogtreecommitdiff
path: root/tests/kms_panel_fitting.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_panel_fitting.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_panel_fitting.c')
-rw-r--r--tests/kms_panel_fitting.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/tests/kms_panel_fitting.c b/tests/kms_panel_fitting.c
index 5266862a..85a231e6 100644
--- a/tests/kms_panel_fitting.c
+++ b/tests/kms_panel_fitting.c
@@ -84,19 +84,7 @@ static void prepare_crtc(data_t *data, igt_output_t *output, enum pipe pipe,
}
igt_plane_set_fb(plane, &data->fb1);
- if (s == COMMIT_LEGACY) {
- int ret;
- ret = drmModeSetCrtc(data->drm_fd,
- plane->pipe->crtc_id,
- data->fb_id1,
- plane->src_x, plane->src_y,
- &output->id,
- 1,
- mode);
- igt_assert_eq(ret, 0);
- } else {
- igt_display_commit2(display, s);
- }
+ igt_display_commit2(display, s);
}
static void cleanup_crtc(data_t *data, igt_output_t *output, igt_plane_t *plane)