Evas: Remove unimplemented image comment (internal)

This is a minor cleanup of RGBA_Image.
This commit is contained in:
Jean-Philippe Andre 2016-03-22 15:21:24 +09:00
parent 8b9f525c01
commit 28a03d6e19
5 changed files with 0 additions and 49 deletions

View File

@ -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;

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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,