derekf pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=e74f2a45af10eab9fbca8e1741beecf29a0ba24b

commit e74f2a45af10eab9fbca8e1741beecf29a0ba24b
Author: Derek Foreman <[email protected]>
Date:   Fri Nov 4 15:04:59 2016 -0500

    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 744d153..06240ce 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);

-- 


Reply via email to