All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t v1] igt_kms: Allow pipes with no cursor plane
@ 2017-04-06 19:18 Robert Foss
  0 siblings, 0 replies; only message in thread
From: Robert Foss @ 2017-04-06 19:18 UTC (permalink / raw)
  To: intel-gfx, Tomeu Vizoso

A cursor plane may not always be available. Since there
already exist variables that signal the existance or
non-existance of cursor planes like pipe->plane_cursor and
display->has_cursor_plane, allow the pipes that have no
cursor plane.

Signed-off-by: Robert Foss <robert.foss@collabora.com>
---
 lib/igt_kms.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 5811414f..d49e152e 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -1677,7 +1677,15 @@ void igt_display_init(igt_display_t *display, int drm_fd)
 		 * There should be no gaps. If there is, something happened
 		 * which we can't handle (e.g. all planes are cursors).
 		 */
-		igt_assert_eq(p, last_plane);
+                if (pipe->plane_cursor != -1) {
+                        /* Cursor plane found. */
+                        igt_assert_eq(p, last_plane);
+                } else {
+                        /* No cursor plane found. */
+                        igt_assert_lte(last_plane, p);
+                }
+
+
 
 		pipe->n_planes = n_planes;
 
-- 
2.11.0.453.g787f75f05

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-04-06 19:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-06 19:18 [PATCH i-g-t v1] igt_kms: Allow pipes with no cursor plane Robert Foss

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.