Add support for multiple modes: toggling whether or not the renderer
and/or planes are acceptable. This will be used to implement a smarter
plane-placement heuristic when we have support for testing output
states.

Signed-off-by: Daniel Stone <dani...@collabora.com>
Tested-by: Emre Ucan <eu...@de.adit-jv.com>
---
 libweston/compositor-drm.c | 39 ++++++++++++++++++++++++++++++--------
 1 file changed, 31 insertions(+), 8 deletions(-)

diff --git a/libweston/compositor-drm.c b/libweston/compositor-drm.c
index b4a65209a..c91428d96 100644
--- a/libweston/compositor-drm.c
+++ b/libweston/compositor-drm.c
@@ -1929,6 +1929,11 @@ drm_output_assign_state(struct drm_output_state *state,
        }
 }
 
+enum drm_output_propose_state_mode {
+       DRM_OUTPUT_PROPOSE_STATE_MIXED, /**< mix renderer & planes */
+       DRM_OUTPUT_PROPOSE_STATE_PLANES_ONLY, /**< only assign to planes */
+};
+
 static struct weston_plane *
 drm_output_prepare_scanout_view(struct drm_output_state *output_state,
                                struct weston_view *ev)
@@ -3247,13 +3252,17 @@ err:
 
 static struct drm_output_state *
 drm_output_propose_state(struct weston_output *output_base,
-                        struct drm_pending_state *pending_state)
+                        struct drm_pending_state *pending_state,
+                        enum drm_output_propose_state_mode mode)
 {
        struct drm_output *output = to_drm_output(output_base);
+       struct drm_backend *b = to_drm_backend(output_base->compositor);
        struct drm_output_state *state;
        struct weston_view *ev;
        pixman_region32_t surface_overlap, renderer_region, occluded_region;
        struct weston_plane *primary = &output_base->compositor->primary_plane;
+       bool renderer_ok = (mode != DRM_OUTPUT_PROPOSE_STATE_PLANES_ONLY);
+       bool planes_ok = !b->sprites_are_broken;
 
        assert(!output->state_last);
        state = drm_output_state_duplicate(output->state_cur,
@@ -3316,36 +3325,49 @@ drm_output_propose_state(struct weston_output 
*output_base,
                        next_plane = primary;
                pixman_region32_fini(&surface_overlap);
 
-               if (next_plane == NULL)
+               /* The cursor plane is 'special' in the sense that we can still
+                * place it in the legacy API, and we gate that with a separate
+                * cursors_are_broken flag. */
+               if (next_plane == NULL && !b->cursors_are_broken)
                        next_plane = drm_output_prepare_cursor_view(state, ev);
 
                if (next_plane == NULL && !drm_view_is_opaque(ev))
                        next_plane = primary;
 
+               if (next_plane == NULL && !planes_ok)
+                       next_plane = primary;
+
                if (next_plane == NULL)
                        next_plane = drm_output_prepare_scanout_view(state, ev);
 
                if (next_plane == NULL)
                        next_plane = drm_output_prepare_overlay_view(state, ev);
 
-               if (next_plane == NULL)
-                       next_plane = primary;
+               if (!next_plane || next_plane == primary) {
+                       if (!renderer_ok)
+                               goto err;
 
-               if (next_plane == primary)
                        pixman_region32_union(&renderer_region,
                                              &renderer_region,
                                              &clipped_view);
-               else if (output->cursor_plane &&
-                        next_plane != &output->cursor_plane->base)
+               } else if (output->cursor_plane &&
+                          next_plane != &output->cursor_plane->base) {
                        pixman_region32_union(&occluded_region,
                                              &occluded_region,
                                              &clipped_view);
+               }
                pixman_region32_fini(&clipped_view);
        }
        pixman_region32_fini(&renderer_region);
        pixman_region32_fini(&occluded_region);
 
        return state;
+
+err:
+       pixman_region32_fini(&renderer_region);
+       pixman_region32_fini(&occluded_region);
+       drm_output_state_free(state);
+       return NULL;
 }
 
 static void
@@ -3359,7 +3381,8 @@ drm_assign_planes(struct weston_output *output_base, void 
*repaint_data)
        struct weston_view *ev;
        struct weston_plane *primary = &output_base->compositor->primary_plane;
 
-       state = drm_output_propose_state(output_base, pending_state);
+       state = drm_output_propose_state(output_base, pending_state,
+                                        DRM_OUTPUT_PROPOSE_STATE_MIXED);
 
        wl_list_for_each(ev, &output_base->compositor->view_list, link) {
                struct drm_plane *target_plane = NULL;
-- 
2.17.1

_______________________________________________
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-devel

Reply via email to