[PATCH 1/2] compositor-wayland: Make sure border fields are set before wayland_compositor_create_output and document some function dependencies.
Kristian Høgsberg
hoegsberg at gmail.com
Tue Oct 9 20:19:31 PDT 2012
On Thu, Oct 04, 2012 at 08:42:16PM +0200, John Kåre Alsaker wrote:
And the border is back - thanks.
Kristian
> ---
> src/compositor-wayland.c | 13 ++++++++-----
> 1 file changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/src/compositor-wayland.c b/src/compositor-wayland.c
> index 05f21c2..2194010 100644
> --- a/src/compositor-wayland.c
> +++ b/src/compositor-wayland.c
> @@ -237,11 +237,6 @@ create_border(struct wayland_compositor *c)
> 0, GL_BGRA_EXT, GL_UNSIGNED_BYTE,
> pixman_image_get_data(image));
>
> - c->border.top = 25;
> - c->border.bottom = 50;
> - c->border.left = 25;
> - c->border.right = 25;
> -
> pixman_image_unref(image);
> }
>
> @@ -843,12 +838,20 @@ wayland_compositor_create(struct wl_display *display,
> c->base.destroy = wayland_destroy;
> c->base.restore = wayland_restore;
>
> + c->border.top = 25;
> + c->border.bottom = 50;
> + c->border.left = 25;
> + c->border.right = 25;
> +
> + /* requires border fields */
> if (wayland_compositor_create_output(c, width, height) < 0)
> goto err_display;
>
> + /* requires wayland_compositor_create_output */
> if (gles2_renderer_init(&c->base) < 0)
> goto err_display;
>
> + /* requires gles2_renderer_init */
> create_border(c);
>
> loop = wl_display_get_event_loop(c->base.wl_display);
> --
> 1.7.12.2
>
> _______________________________________________
> wayland-devel mailing list
> wayland-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/wayland-devel
More information about the wayland-devel
mailing list