The "need" flags on igt_pipe simply mirror the fb_changed field of the
primary/cursor planes.  Drop them and just use fb_changed instead.

Signed-off-by: Matt Roper <[email protected]>
---
 lib/igt_kms.c | 18 ++++++------------
 lib/igt_kms.h |  2 --
 2 files changed, 6 insertions(+), 14 deletions(-)

diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index c0f4f6c..1e7b901 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -837,11 +837,14 @@ static int igt_output_commit(igt_output_t *output)
 {
        igt_display_t *display = output->display;
        igt_pipe_t *pipe;
+       igt_plane_t *primary;
+       igt_plane_t *cursor;
        int i;
 
        pipe = igt_output_get_driving_pipe(output);
-       if (pipe->need_set_crtc) {
-               igt_plane_t *primary = &pipe->planes[0];
+       primary = igt_pipe_get_plane(pipe, IGT_PLANE_PRIMARY);
+       cursor = igt_pipe_get_plane(pipe, IGT_PLANE_CURSOR);
+       if (primary->fb_changed) {
                drmModeModeInfo *mode;
                uint32_t fb_id, crtc_id;
                int ret;
@@ -887,16 +890,13 @@ static int igt_output_commit(igt_output_t *output)
 
                igt_assert(ret == 0);
 
-               pipe->need_set_crtc = false;
                primary->fb_changed = false;
        }
 
-       if (pipe->need_set_cursor) {
-               igt_plane_t *cursor;
+       if (cursor->fb_changed) {
                uint32_t gem_handle, crtc_id;
                int ret;
 
-               cursor = igt_pipe_get_plane(pipe, IGT_PLANE_CURSOR);
                crtc_id = output->config.crtc->crtc_id;
                gem_handle = igt_plane_get_fb_gem_handle(cursor);
 
@@ -924,7 +924,6 @@ static int igt_output_commit(igt_output_t *output)
 
                igt_assert(ret == 0);
 
-               pipe->need_set_cursor = false;
                cursor->fb_changed = false;
        }
 
@@ -1009,11 +1008,6 @@ void igt_plane_set_fb(igt_plane_t *plane, struct igt_fb 
*fb)
 
        plane->fb = fb;
 
-       if (plane->is_primary)
-               pipe->need_set_crtc = true;
-       else if (plane->is_cursor)
-               pipe->need_set_cursor = true;
-
        plane->fb_changed = true;
 }
 
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 7d015b4..88b695a 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -120,8 +120,6 @@ typedef struct {
 struct igt_pipe {
        igt_display_t *display;
        enum pipe pipe;
-       unsigned int need_set_crtc        : 1;
-       unsigned int need_set_cursor      : 1;
        unsigned int need_wait_for_vblank : 1;
 #define IGT_MAX_PLANES 4
        int n_planes;
-- 
1.8.5.1

_______________________________________________
Intel-gfx mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to