added evas_common_image_init()/shutdown()

SVN revision: 8527
This commit is contained in:
tsauerbeck 2004-01-17 16:27:58 +00:00 committed by tsauerbeck
parent a34bda3be4
commit d573ecc0f4
8 changed files with 18 additions and 0 deletions

View File

@ -298,6 +298,7 @@ evas_engine_buffer_output_free(void *data)
free(re);
evas_common_font_shutdown();
evas_common_image_shutdown();
}
static void

View File

@ -55,6 +55,17 @@ image_debug(void)
void
evas_common_image_init(void)
{
#ifdef BUILD_LOADER_EET
eet_init();
#endif
}
void
evas_common_image_shutdown(void)
{
#ifdef BUILD_LOADER_EET
eet_shutdown();
#endif
}
RGBA_Surface *

View File

@ -210,6 +210,7 @@ evas_engine_directfb_output_free(void *data)
free(re);
evas_common_font_shutdown();
evas_common_image_shutdown();
}
void

View File

@ -244,6 +244,7 @@ evas_engine_fb_output_free(void *data)
free(re);
evas_common_font_shutdown();
evas_common_image_shutdown();
}
static void

View File

@ -259,6 +259,7 @@ evas_engine_gl_x11_output_free(void *data)
free(re);
evas_common_font_shutdown();
evas_common_image_shutdown();
}
static void

View File

@ -260,6 +260,7 @@ evas_engine_software_qtopia_output_free(void *data)
free(re);
evas_common_font_shutdown();
evas_common_image_shutdown();
}
static void

View File

@ -303,6 +303,7 @@ evas_engine_software_x11_output_free(void *data)
free(re);
evas_common_font_shutdown();
evas_common_image_shutdown();
}
static void

View File

@ -742,6 +742,7 @@ void evas_common_scale_rgba_in_to_out_clip_sample (RGBA_Image *src, RGBA_Im
/****/
void evas_common_image_init (void);
void evas_common_image_shutdown (void);
RGBA_Surface *evas_common_image_surface_new (void);
void evas_common_image_surface_free (RGBA_Surface *is);