evas: correctly detect if loader support asynchronous preloading.

This is an astonishing bug, I wonder since how long it has been there. It
is basically due to the use of void * and a wrong cast. Type checking is
clearly useful, let's use it more !
This commit is contained in:
Cedric Bail 2013-06-04 11:17:21 +09:00
parent ad5d75dfcd
commit d1bed386bd
6 changed files with 18 additions and 13 deletions

View File

@ -1,3 +1,7 @@
2013-06-04 Cedric Bail
* Evas: correctly detect if loader support asynchronous preloading.
2013-06-03 Ederson Desouza
* Add -1.0 value to text ellipsis -- for not ellipsizing it at all.

2
NEWS
View File

@ -317,4 +317,4 @@ Fixes:
* Fix evas gl engine to work in 16bpp nicely.
* Fix native surface to be more anal about depth matching.
* Fix eeze sensors to not segv on shutdown
* Evas: correctly detect if a loader support asynchronous preloading.

View File

@ -343,8 +343,8 @@ _evas_cache_image_async_heavy(void *data)
current->channel++;
cache = current->cache;
if ((!current->flags.loaded) &&
((Evas_Image_Load_Func*) current->info.module)->threadable)
if ((!current->flags.loaded) &&
current->info.loader->threadable)
{
error = cache->func.load(current);
if (cache->func.debug) cache->func.debug("load", current);

View File

@ -345,9 +345,9 @@ evas_common_load_rgba_image_module_from_file(Image_Entry *ie)
em->definition->name : "<UNKNOWN>",
file);
ie->info.module = (void*) em;
ie->info.module = em;
ie->info.loader = (void*) em ? em->functions : NULL;
evas_module_ref((Evas_Module*) ie->info.module);
evas_module_ref(ie->info.module);
return ret;
}
@ -388,7 +388,7 @@ evas_common_load_rgba_image_data_from_file(Image_Entry *ie)
// printf("load data [%p] %s %s\n", ie, ie->file, ie->key);
evas_image_load_func = ie->info.loader;
evas_module_use((Evas_Module*) ie->info.module);
evas_module_use(ie->info.module);
if (!ie->f) return EVAS_LOAD_ERROR_DOES_NOT_EXIST;
@ -412,7 +412,7 @@ evas_common_load_rgba_image_data_from_file(Image_Entry *ie)
if (property.premul)
evas_common_image_premul(ie);
// evas_module_unref((Evas_Module*) ie->info.module);
// evas_module_unref(ie->info.module);
// ie->info.module = NULL;
return ret;
@ -426,7 +426,7 @@ evas_common_load_rgba_image_frame_duration_from_file(Image_Entry *ie, const int
if (!ie->info.module) return -1;
evas_image_load_func = ie->info.loader;
evas_module_use((Evas_Module*) ie->info.module);
evas_module_use(ie->info.module);
if (evas_image_load_func->frame_duration)
{
if (!ie->f) return -1;

View File

@ -4,9 +4,8 @@
#include <string.h>
#include <evas_common.h>
#include <evas_private.h>
#include <evas_module.h>
#include "evas_common.h"
#include "evas_private.h"
static Eina_Hash *evas_modules[4] = {

View File

@ -347,6 +347,8 @@ extern EAPI int _evas_log_dom_global;
/*****************************************************************************/
#include "../file/evas_module.h"
typedef unsigned long long DATA64;
typedef unsigned int DATA32;
typedef unsigned short DATA16;
@ -593,8 +595,8 @@ struct _Image_Entry
struct
{
void *module;
void *loader;
Evas_Module *module;
Evas_Image_Load_Func *loader;
} info;
LK(lock);