From e74f2a45af10eab9fbca8e1741beecf29a0ba24b Mon Sep 17 00:00:00 2001 From: Derek Foreman Date: Fri, 4 Nov 2016 15:04:59 -0500 Subject: [PATCH] Increase area of tilers for regions We don't have any idea at this point what the region will be used for, and tilers clip to their area on ingress. If we're going to use tilers for wayland regions we need to make them huge and clip them later. --- src/bin/e_comp_wl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 744d153ca..06240ce2b 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -1901,7 +1901,7 @@ _e_comp_wl_compositor_cb_region_create(struct wl_client *client, struct wl_resou DBG("Region Create: %d", wl_resource_get_id(resource)); /* try to create new tiler */ - if (!(tiler = eina_tiler_new(e_comp->w, e_comp->h))) + if (!(tiler = eina_tiler_new(65535, 65535))) { ERR("Could not create Eina_Tiler"); wl_resource_post_no_memory(resource);