e_output: check pp commit possible before execute _e_output_render_update 10/155510/1
authorJunkyeong Kim <jk0430.kim@samsung.com>
Fri, 13 Oct 2017 10:03:46 +0000 (19:03 +0900)
committerJunkyeong Kim <jk0430.kim@samsung.com>
Fri, 13 Oct 2017 10:03:49 +0000 (19:03 +0900)
Change-Id: I6adb8dcc066ae1618f590cbc0c41ac8297bd275e
Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
src/bin/e_output.c

index 27bcb843087e016875a576fe774382b613b30933..098aee03934f549794cb6b9742f10489a7e88286 100644 (file)
@@ -384,7 +384,8 @@ _e_output_zoom_rotate(E_Output *output)
      }
 
    /* update the ecore_evas */
-   _e_output_render_update(output);
+   if (e_plane_pp_commit_possible_check(ep))
+     _e_output_render_update(output);
 }
 
 static void
@@ -2531,7 +2532,8 @@ e_output_zoom_set(E_Output *output, double zoomx, double zoomy, int cx, int cy)
        output->zoom_conf.rect.x, output->zoom_conf.rect.y, output->zoom_conf.rect.w, output->zoom_conf.rect.h);
 
    /* update the ecore_evas */
-   _e_output_render_update(output);
+   if (e_plane_pp_commit_possible_check(ep))
+     _e_output_render_update(output);
 
    return EINA_TRUE;
 }