evas-drm: 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:13:12 -05:00
parent 6016ce8133
commit 5f897542aa
3 changed files with 1 additions and 8 deletions

View File

@ -41,7 +41,7 @@ eng_output_setup(void *engine, void *einfo, unsigned int w, unsigned int h)
NULL,
_outbuf_update_region_new,
_outbuf_update_region_push,
_outbuf_update_region_free,
NULL,
NULL,
_outbuf_flush,
_outbuf_redraws_clear,

View File

@ -80,7 +80,6 @@ void _outbuf_reconfigure(Outbuf *ob, int w, int h, int rotation, Outbuf_Depth de
Render_Output_Swap_Mode _outbuf_state_get(Outbuf *ob);
void *_outbuf_update_region_new(Outbuf *ob, int x, int y, int w, int h, int *cx, int *cy, int *cw, int *ch);
void _outbuf_update_region_push(Outbuf *ob, RGBA_Image *update, int x, int y, int w, int h);
void _outbuf_update_region_free(Outbuf *ob, RGBA_Image *update);
void _outbuf_flush(Outbuf *ob, Tilebuf_Rect *surface_damage, Tilebuf_Rect *buffer_damage, Evas_Render_Mode render_mode);
void _outbuf_redraws_clear(Outbuf *ob);

View File

@ -484,12 +484,6 @@ _outbuf_update_region_push(Outbuf *ob, RGBA_Image *update, int x, int y, int w,
rect.w, rect.h, x + rx, y + ry, NULL);
}
void
_outbuf_update_region_free(Outbuf *ob EINA_UNUSED, RGBA_Image *update EINA_UNUSED)
{
}
void
_outbuf_flush(Outbuf *ob, Tilebuf_Rect *surface_damage EINA_UNUSED, Tilebuf_Rect *buffer_damage EINA_UNUSED, Evas_Render_Mode render_mode)
{