From ace0a3920e791733211178f83f88bc5c52887042 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Wed, 13 Nov 2013 21:55:57 -0800 Subject: [PATCH] weston-test: Always update transform when moving surface weston_view_update_transform() will post damage in the old and new positions of the view and thus make sure we always repaint properly. In particular, in bug 66133, the test suite moves the surface off any output and weston_surface_schedule_repaint() in commit fails to do anything, since the surface is not on any output. After changing view geometry, we have to either call weston_compositor_schedule_repaint(), which is what shell.c typically does, though that repaints all outputs, or call weston_view_update_transform() to force update the transformation and queue repaints on affected outputs. https://bugs.freedesktop.org/show_bug.cgi?id=66133 --- tests/weston-test.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/weston-test.c b/tests/weston-test.c index 5f341d8..0536be4 100644 --- a/tests/weston-test.c +++ b/tests/weston-test.c @@ -88,8 +88,7 @@ test_surface_configure(struct weston_surface *surface, int32_t sx, int32_t sy, i test_surface->x, test_surface->y, width, height); - if (!weston_view_is_mapped(test_surface->view)) - weston_view_update_transform(test_surface->view); + weston_view_update_transform(test_surface->view); } static void -- 2.7.4