evas_object_image: render_post returns if preloading. 29/200329/2
authorShinwoo Kim <cinoo.kim@samsung.com>
Thu, 21 Feb 2019 06:57:17 +0000 (06:57 +0000)
committerwoochan lee <wc0917.lee@samsung.com>
Fri, 22 Feb 2019 04:26:48 +0000 (04:26 +0000)
commit90e2fadc5bffa47120ac010205b68951d852e67d
treefb61f283337aa650966cb42b1bf59520added59f
parent7ed43e58bce073d95bf560dd6070dcf72de3d71f
evas_object_image: render_post returns if preloading.

The render_post calls evas_object_change if o->changed is true which is added
by commit "36fc2e6 evas image: fix non-rendered preload image.".
But an image could lose chance to render. Please refer to the following.

(1) 1st render_updates_internal
  render_post - evas_object_change for image and its parents
  evas_object_reset - for its parent

(2) _evas_image_load_post_update - o->preload is changed to true here

(3) 2nd render_updates_internal
  evas_render_mapped cannot call render

The reason of (3) would be unchanged parents.

If render_post returns if an image is preloading, then evas_object_change works
for the image and its parents at (2). And finally (3) will call render.
It would be reasonable because render_pre, and render returns as well.

Reviewed-by: Cedric BAIL <cedric.bail@free.fr>
Differential Revision: https://phab.enlightenment.org/D7973

Change-Id: Ifc84f6733bb7cc6a5e21c9686edba811270d1bab
src/lib/evas/canvas/evas_object_image.c