summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCedric BAIL <cedric@osg.samsung.com>2017-11-01 15:25:53 -0700
committerCedric BAIL <cedric@osg.samsung.com>2017-11-01 15:32:36 -0700
commit925d558780744ba6daf675b07731769888c06335 (patch)
treef50ecd15ab04cfbdb471161e1dbe15b867162422
parent5f7710f561dd91b7d417a10e65b9f767e1d11da0 (diff)
downloadefl-925d558780744ba6daf675b07731769888c06335.tar.gz
ecore_evas: do not propagate drawing change blindly from sub surface to parent.
It is not because a round of rendering happen for a child, that it result in actually drawing anything in the parent. The parent will always be aware of the rendering request of the sub surface and we should only track what the parent think. T6049 Tested-by: Derek Foreman <derekf@osg.samsung.com>
-rw-r--r--src/lib/ecore_evas/ecore_evas.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_evas/ecore_evas.c b/src/lib/ecore_evas/ecore_evas.c
index 9f7951ab67..a18bdbac51 100644
--- a/src/lib/ecore_evas/ecore_evas.c
+++ b/src/lib/ecore_evas/ecore_evas.c
@@ -164,7 +164,7 @@ ecore_evas_render(Ecore_Evas *ee)
if (!ee->engine.func->fn_prepare(ee))
return EINA_FALSE;
- rend = ecore_evas_render_prepare(ee);
+ ecore_evas_render_prepare(ee);
ee->in_async_render = 1;