From: Derek Foreman Date: Thu, 14 Sep 2017 22:04:51 +0000 (-0500) Subject: wayland_shm: Make some function static X-Git-Tag: submit/sandbox/upgrade/efl120/20180319.053334~2284 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7f2723717124066c16c2e855108278142fdedd98;p=platform%2Fupstream%2Fefl.git wayland_shm: Make some function static Only used in this file. --- diff --git a/src/modules/evas/engines/wayland_shm/evas_shm.c b/src/modules/evas/engines/wayland_shm/evas_shm.c index adf04dc..a2ab42c 100644 --- a/src/modules/evas/engines/wayland_shm/evas_shm.c +++ b/src/modules/evas/engines/wayland_shm/evas_shm.c @@ -369,7 +369,7 @@ _shm_leaf_destroy(Shm_Leaf *leaf) leaf->resize_pool = NULL; } -void +static void _evas_shm_surface_destroy(Surface *surface) { int i = 0; @@ -385,7 +385,7 @@ _evas_shm_surface_destroy(Surface *surface) surface->surf.shm = NULL; } -void +static void _evas_shm_surface_reconfigure(Surface *s, int w, int h, uint32_t flags, Eina_Bool force) { Shm_Surface *surface; @@ -459,7 +459,7 @@ _evas_shm_surface_wait(Shm_Surface *surface) return NULL; } -int +static int _evas_shm_surface_assign(Surface *s) { int i; @@ -500,7 +500,7 @@ _evas_shm_surface_assign(Surface *s) return surface->current->age; } -void * +static void * _evas_shm_surface_data_get(Surface *s, int *w, int *h) { Shm_Surface *surface; @@ -524,7 +524,7 @@ _evas_shm_surface_data_get(Surface *s, int *w, int *h) return surface->current->data->map; } -void +static void _evas_shm_surface_post(Surface *s, Eina_Rectangle *rects, unsigned int count) { Ecore_Wl2_Window *win;