wayland_shm: Wrap function pointers for surface

This is going to be an API soon.
This commit is contained in:
Derek Foreman 2017-11-30 11:53:53 -06:00
parent dd8d60ad28
commit 594fef7dd3
2 changed files with 42 additions and 0 deletions

View File

@ -146,6 +146,41 @@ _evas_dmabuf_surface_destroy(Surface *s)
free(s);
}
void surface_destroy(Surface *surface)
{
EINA_SAFETY_ON_NULL_RETURN(surface);
surface->funcs.destroy(surface);
}
void surface_reconfigure(Surface *surface, int w, int h, uint32_t flags, Eina_Bool force)
{
EINA_SAFETY_ON_NULL_RETURN(surface);
surface->funcs.reconfigure(surface, w, h, flags, force);
}
void *surface_data_get(Surface *surface, int *w, int *h)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(surface, NULL);
return surface->funcs.data_get(surface, w, h);
}
int surface_assign(Surface *surface)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(surface, 0);
return surface->funcs.assign(surface);
}
void surface_post(Surface *surface, Eina_Rectangle *rects, unsigned int count)
{
EINA_SAFETY_ON_NULL_RETURN(surface);
surface->funcs.post(surface, rects, count);
}
Surface *
_evas_surface_create(Ecore_Wl2_Window *win, Eina_Bool alpha)
{

View File

@ -139,4 +139,11 @@ void *_evas_outbuf_update_region_new(Outbuf *ob, int x, int y, int w, int h, int
void _evas_outbuf_update_region_push(Outbuf *ob, RGBA_Image *update, int x, int y, int w, int h);
void _evas_outbuf_redraws_clear(Outbuf *ob);
void surface_destroy(Surface *surface);
void surface_reconfigure(Surface *surface, int w, int h, uint32_t flags, Eina_Bool force);
void *surface_data_get(Surface *surface, int *w, int *h);
int surface_assign(Surface *surface);
void surface_post(Surface *surface, Eina_Rectangle *rects, unsigned int count);
#endif