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.
This commit is contained in:
Derek Foreman 2016-11-04 15:04:59 -05:00 committed by Mike Blumenkrantz
parent b858cf7b73
commit 805eb55628
1 changed files with 1 additions and 1 deletions

View File

@ -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);