compositor-drm: Reshuffle drm_output_render
Call drm_output_render unconditionally, doing an early exit if we're already rendering a client buffer on the primary plane. Signed-off-by: Daniel Stone <daniels@collabora.com> Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
This commit is contained in:
committed by
Pekka Paalanen
parent
5bb8f58fd2
commit
4e84f7dd32
@@ -752,6 +752,11 @@ drm_output_render(struct drm_output *output, pixman_region32_t *damage)
|
|||||||
struct weston_compositor *c = output->base.compositor;
|
struct weston_compositor *c = output->base.compositor;
|
||||||
struct drm_backend *b = to_drm_backend(c);
|
struct drm_backend *b = to_drm_backend(c);
|
||||||
|
|
||||||
|
/* If we already have a client buffer promoted to scanout, then we don't
|
||||||
|
* want to render. */
|
||||||
|
if (output->fb_pending)
|
||||||
|
return;
|
||||||
|
|
||||||
if (b->use_pixman)
|
if (b->use_pixman)
|
||||||
drm_output_render_pixman(output, damage);
|
drm_output_render_pixman(output, damage);
|
||||||
else
|
else
|
||||||
@@ -823,8 +828,7 @@ drm_output_repaint(struct weston_output *output_base,
|
|||||||
if (output->disable_pending || output->destroy_pending)
|
if (output->disable_pending || output->destroy_pending)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
if (!output->fb_pending)
|
drm_output_render(output, damage);
|
||||||
drm_output_render(output, damage);
|
|
||||||
if (!output->fb_pending)
|
if (!output->fb_pending)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user