diff --git a/src/lib/evas/include/evas_common_private.h b/src/lib/evas/include/evas_common_private.h index ca074415ef..98f9066444 100644 --- a/src/lib/evas/include/evas_common_private.h +++ b/src/lib/evas/include/evas_common_private.h @@ -835,21 +835,9 @@ struct _RGBA_Pipe_Thread_Info struct _RGBA_Image { Image_Entry cache_entry; - RGBA_Image_Flags flags; - struct - { -/* void *module; */ -/* void *loader; */ -/* char *real_file; */ - char *comment; -// int format; - } info; - void *extended_info; -/* unsigned char scale; */ - /* Colorspace stuff. */ struct { void *data; diff --git a/src/lib/evas/include/evas_private.h b/src/lib/evas/include/evas_private.h index ebfba845ac..e3eab642f2 100644 --- a/src/lib/evas/include/evas_private.h +++ b/src/lib/evas/include/evas_private.h @@ -1358,7 +1358,6 @@ struct _Evas_Func void *(*image_border_set) (void *data, void *image, int l, int r, int t, int b); void (*image_border_get) (void *data, void *image, int *l, int *r, int *t, int *b); Eina_Bool (*image_draw) (void *data, void *context, void *surface, void *image, int src_x, int src_y, int src_w, int src_h, int dst_x, int dst_y, int dst_w, int dst_h, int smooth, Eina_Bool do_async); - char *(*image_comment_get) (void *data, void *image, char *key); void (*image_colorspace_set) (void *data, void *image, Evas_Colorspace cspace); Evas_Colorspace (*image_colorspace_get) (void *data, void *image); Evas_Colorspace (*image_file_colorspace_get)(void *data, void *image); diff --git a/src/modules/evas/engines/gl_cocoa/evas_engine.c b/src/modules/evas/engines/gl_cocoa/evas_engine.c index 08b62b510e..58f26d0cc4 100644 --- a/src/modules/evas/engines/gl_cocoa/evas_engine.c +++ b/src/modules/evas/engines/gl_cocoa/evas_engine.c @@ -455,17 +455,6 @@ eng_image_border_get(void *data EINA_UNUSED, void *image EINA_UNUSED, int *l EIN { } -static char * -eng_image_comment_get(void *data EINA_UNUSED, void *image, char *key EINA_UNUSED) -{ - Evas_GL_Image *im; - - if (!image) return NULL; - im = image; - if (!im->im) return NULL; - return im->im->info.comment; -} - static Evas_Colorspace eng_image_file_colorspace_get(void *data EINA_UNUSED, void *image) { @@ -1385,7 +1374,6 @@ module_open(Evas_Module *em) ORD(image_border_set); ORD(image_border_get); ORD(image_draw); - ORD(image_comment_get); ORD(image_colorspace_set); ORD(image_colorspace_get); ORD(image_file_colorspace_get); diff --git a/src/modules/evas/engines/gl_generic/evas_engine.c b/src/modules/evas/engines/gl_generic/evas_engine.c index d1d2a6fa57..a0d956b094 100644 --- a/src/modules/evas/engines/gl_generic/evas_engine.c +++ b/src/modules/evas/engines/gl_generic/evas_engine.c @@ -242,18 +242,6 @@ eng_image_border_get(void *data EINA_UNUSED, void *image EINA_UNUSED, int *l EIN { } - -static char * -eng_image_comment_get(void *data EINA_UNUSED, void *image, char *key EINA_UNUSED) -{ - Evas_GL_Image *im; - - if (!image) return NULL; - im = image; - if (!im->im) return NULL; - return im->im->info.comment; -} - static Evas_Colorspace eng_image_file_colorspace_get(void *data EINA_UNUSED, void *image) { @@ -2833,7 +2821,6 @@ module_open(Evas_Module *em) ORD(image_border_set); ORD(image_border_get); ORD(image_draw); - ORD(image_comment_get); ORD(image_colorspace_set); ORD(image_colorspace_get); ORD(image_file_colorspace_get); diff --git a/src/modules/evas/engines/software_generic/evas_engine.c b/src/modules/evas/engines/software_generic/evas_engine.c index 176e407412..2981f5a75e 100644 --- a/src/modules/evas/engines/software_generic/evas_engine.c +++ b/src/modules/evas/engines/software_generic/evas_engine.c @@ -1069,16 +1069,6 @@ eng_image_border_get(void *data EINA_UNUSED, void *image EINA_UNUSED, int *l EIN { } -static char * -eng_image_comment_get(void *data EINA_UNUSED, void *image, char *key EINA_UNUSED) -{ - RGBA_Image *im; - - if (!image) return NULL; - im = image; - return im->info.comment; -} - static Evas_Colorspace eng_image_file_colorspace_get(void *data EINA_UNUSED, void *image) { @@ -4154,7 +4144,6 @@ static Evas_Func func = eng_image_border_set, eng_image_border_get, eng_image_draw, - eng_image_comment_get, eng_image_colorspace_set, eng_image_colorspace_get, eng_image_file_colorspace_get,