derekf pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=83f8db157e1b47fc3398ccd6f51c421762f9c227
commit 83f8db157e1b47fc3398ccd6f51c421762f9c227 Author: Derek Foreman <[email protected]> Date: Fri Jan 26 12:39:01 2018 -0600 ecore_wl2: rename _surface_flush for consistency It was originally thought that this could be common code for multiple back-ends, but that doesn't really make sense now, so rename it to match the other dmabuf functions. --- src/lib/ecore_wl2/ecore_wl2_surface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/ecore_wl2/ecore_wl2_surface.c b/src/lib/ecore_wl2/ecore_wl2_surface.c index bb05a8190a..746dee4758 100644 --- a/src/lib/ecore_wl2/ecore_wl2_surface.c +++ b/src/lib/ecore_wl2/ecore_wl2_surface.c @@ -177,7 +177,7 @@ _evas_dmabuf_surface_destroy(Ecore_Wl2_Surface *s EINA_UNUSED, void *priv_data) } static void -_surface_flush(Ecore_Wl2_Surface *surface EINA_UNUSED, void *priv_data) +_evas_dmabuf_surface_flush(Ecore_Wl2_Surface *surface EINA_UNUSED, void *priv_data) { Ecore_Wl2_Dmabuf_Private *p; Ecore_Wl2_Buffer *b; @@ -250,7 +250,7 @@ static Ecore_Wl2_Surface_Interface dmabuf_smanager = .data_get = _evas_dmabuf_surface_data_get, .assign = _evas_dmabuf_surface_assign, .post = _evas_dmabuf_surface_post, - .flush = _surface_flush + .flush = _evas_dmabuf_surface_flush }; EAPI Ecore_Wl2_Surface * --
