summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2013-02-27 05:35:13 +0100
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2013-06-27 10:01:16 +0200
commit68bf4e5f5ff2c68cce18fb6b7a64877fcb36045a (patch)
treecf5c2adb47a48f5626cb0276546a8c494211b1a1
parent09d9480acfd5d38fda02d2a5d7d6d72261b24c4d (diff)
modetest: Print the plane ID when setting up a plane
As modetest automatically selects an unused plan, providing the plane ID allows modifying plane properties for the selected planes. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rw-r--r--tests/modetest/modetest.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/modetest/modetest.c b/tests/modetest/modetest.c
index 897a66c5..7f7a3a23 100644
--- a/tests/modetest/modetest.c
+++ b/tests/modetest/modetest.c
@@ -838,14 +838,14 @@ set_plane(struct kms_driver *kms, struct connector_arg *c, struct plane_arg *p)
plane_id = ovr->plane_id;
}
- fprintf(stderr, "testing %dx%d@%s overlay plane\n",
- p->w, p->h, p->format_str);
-
if (!plane_id) {
- fprintf(stderr, "failed to find plane!\n");
+ fprintf(stderr, "no unused plane available for CRTC %u\n", c->crtc);
return -1;
}
+ fprintf(stderr, "testing %dx%d@%s overlay plane %u\n",
+ p->w, p->h, p->format_str, plane_id);
+
plane_bo = create_test_buffer(kms, p->fourcc, p->w, p->h, handles,
pitches, offsets, PATTERN_TILES);
if (plane_bo == NULL)