evas-software-gdi: Remove need for useless free_region function

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2017-11-06 09:17:02 -05:00
parent f32c1ece7e
commit 5edae8b9c1
3 changed files with 1 additions and 11 deletions

View File

@ -51,7 +51,7 @@ eng_output_setup(void *engine, void *in, unsigned int w, unsigned int h)
NULL,
evas_software_gdi_outbuf_new_region_for_update,
evas_software_gdi_outbuf_push_updated_region,
evas_software_gdi_outbuf_free_region_for_update,
NULL,
evas_software_gdi_outbuf_idle_flush,
evas_software_gdi_outbuf_flush,
NULL,

View File

@ -180,9 +180,6 @@ void evas_software_gdi_outbuf_push_updated_region(Outbuf *buf,
int w,
int h);
void evas_software_gdi_outbuf_free_region_for_update(Outbuf *buf,
RGBA_Image *update);
void evas_software_gdi_outbuf_flush(Outbuf *buf, Tilebuf_Rect *surface_damage, Tilebuf_Rect *buffer_damage, Evas_Render_Mode render_mode);
void evas_software_gdi_outbuf_idle_flush(Outbuf *buf);

View File

@ -546,13 +546,6 @@ evas_software_gdi_outbuf_push_updated_region(Outbuf *buf,
}
}
void
evas_software_gdi_outbuf_free_region_for_update(Outbuf *buf EINA_UNUSED,
RGBA_Image *update EINA_UNUSED)
{
/* no need to do anything - they are cleaned up on flush */
}
void
evas_software_gdi_outbuf_flush(Outbuf *buf, Tilebuf_Rect *surface_damage EINA_UNUSED, Tilebuf_Rect *buffer_damage EINA_UNUSED, Evas_Render_Mode render_mode)
{