evas: skip 1x1 size frame 03/166503/2
authorjiin.moon <jiin.moon@samsung.com>
Wed, 10 Jan 2018 11:10:57 +0000 (20:10 +0900)
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>
Thu, 11 Jan 2018 02:06:54 +0000 (02:06 +0000)
 Don't need to render about 1x1 size.

Change-Id: I664e56c5d1606dbb4a0c9d952aaf395f2363f073

src/lib/evas/canvas/evas_render.c

index 5961ff8..c33c162 100644 (file)
@@ -3183,6 +3183,14 @@ evas_render_updates_internal(Evas *eo_e,
         goto nothing2render;
      }
 
+//TIZEN_ONLY(20160511) : Do not render if the output size is 1 x 1.
+   if ((e->output.w == 1) && (e->output.h == 1))
+     {
+        INF("[[manual_render_dbg]--- SKIP RENDER EVAS (size: 1x1)");
+        return EINA_FALSE;
+     }
+//
+
    if (e->rendering)
      {
         if (do_async)