Evas (wayland_egl): Remove printfs (done debugging that).
authordevilhorns <devilhorns@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 12 Jan 2012 13:10:53 +0000 (13:10 +0000)
committerdevilhorns <devilhorns@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 12 Jan 2012 13:10:53 +0000 (13:10 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@67140 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/modules/engines/wayland_egl/evas_engine.c

index 0fd3a83..9c17795 100644 (file)
@@ -794,14 +794,7 @@ eng_output_resize(void *data, int w, int h)
    eng_window_use(re->win);
 
    if (re->win->win)
-     {
-        int nw, nh;
-        wl_egl_window_get_attached_size(re->win->win, &nw, &nh);
-        printf("Attached Size: %d %d\n", nw, nh);
-        wl_egl_window_resize(re->win->win, w, h, 0, 0);
-        wl_egl_window_get_attached_size(re->win->win, &nw, &nh);
-        printf("Attached Size: %d %d\n\n", nw, nh);
-     }
+     wl_egl_window_resize(re->win->win, w, h, 0, 0);
 
    evas_gl_common_context_resize(re->win->gl_context, w, h, re->win->rot);
    evas_common_tilebuf_free(re->tb);