evas_render: Ignore objects on planes for rendering

We want to pretend they're just not there at this point since the
hardware is responsible for drawing them.

Signed-off-by: Derek Foreman <derek.foreman.samsung@gmail.com>
Reviewed-by: Cedric BAIL <cedric.bail@free.fr>
Differential Revision: https://phab.enlightenment.org/D7198
This commit is contained in:
Derek Foreman 2018-10-22 10:37:35 -05:00
parent c90826f72c
commit aab08fb6a8
1 changed files with 1 additions and 0 deletions

View File

@ -1240,6 +1240,7 @@ _evas_render_phase1_process(Phase1_Context *p1ctx)
EINA_INLIST_FOREACH(lay->objects, obj)
{
if (evas_object_is_on_plane(obj->object, obj)) continue;
clean_them |= _evas_render_phase1_object_process
(p1ctx, obj, EINA_FALSE, EINA_FALSE, EINA_FALSE, 2);
}