efl/src/modules/evas
Hermet Park 423d8a2296 evas image: fix a bug in image preloading.
Summary:
Current preloading is too buggy since it's on thread-based.
This is a fundamental improvement to fix a bug.

The critical issue here is,
When preloading img object suddenly cancel its preloading,
the object possibly cannot render image next then because
renderer doesn't have any idea when async cancelling is
finished. Renderer just tries to render regardless of
image loading status, and this could occur no-texture(in gl case)
image object.

So, here improvement is, adding a notification for async cancelled
so that putting img objects to redraw images properly after their preloading is
cancelled.

The best scenario to reproduce this bug is this one.

Evas_Object *img2 = evas_object_image_filled_add(evas);
evas_object_image_file_set(img2, "test.jpg", NULL);
evas_object_image_preload(img2, EINA_FALSE);
evas_object_resize(img2, 200, 200);
evas_object_show(img2);

Evas_Object *img = evas_object_image_filled_add(evas);
evas_object_image_file_set(img, "test.jpg", NULL);
evas_object_image_preload(img, EINA_FALSE);
evas_object_move(img, 200, 200);
evas_object_resize(img, 200, 200);
evas_object_show(img);

evas_object_image_preload(img2, EINA_TRUE);
If you run this on gl backend, occasionally happens rendering fail.

Yet there other bugs on preloading feature....

@fix

Reviewers: #committers, raster

Subscribers: cedric, #reviewers, #committers, zmike

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D6919
2018-09-03 17:12:55 +09:00
..
engines evas image: fix a bug in image preloading. 2018-09-03 17:12:55 +09:00
image_loaders evas: remove warning from image_loaders/png/evas_image_load_png 2017-11-23 15:43:38 -08:00
image_savers evas: removed "clobbered" warnings from image_savers/png/evas_image_save_png 2017-12-11 17:18:55 +09:00
model_loaders efl: drop deprecated Encoding key from desktop files 2017-12-13 10:27:48 -08:00
model_savers evas mesh save - use alloca for tmp strings instead of heap 2017-07-16 15:56:02 +09:00
vg_loaders canvas vg_loader: close opened file after using it. 2018-07-11 16:09:31 +09:00
vg_savers Efl.Gfx.Image* (From Efl.Image*) 2018-04-24 09:03:40 -07:00