diff options
author | Derek Foreman <derekf@osg.samsung.com> | 2018-01-26 12:39:01 -0600 |
---|---|---|
committer | Derek Foreman <derekf@osg.samsung.com> | 2018-01-26 15:54:00 -0600 |
commit | 83f8db157e1b47fc3398ccd6f51c421762f9c227 (patch) | |
tree | 29963c6f5f7aaef4aa1690d7d684e1b35293074d /src/lib/ecore_wl2/ecore_wl2_surface.c | |
parent | 07c41f48c4152f13129000dc9ac3b715bf258dfa (diff) |
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.
Diffstat (limited to 'src/lib/ecore_wl2/ecore_wl2_surface.c')
-rw-r--r-- | src/lib/ecore_wl2/ecore_wl2_surface.c | 4 |
1 files 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) | |||
177 | } | 177 | } |
178 | 178 | ||
179 | static void | 179 | static void |
180 | _surface_flush(Ecore_Wl2_Surface *surface EINA_UNUSED, void *priv_data) | 180 | _evas_dmabuf_surface_flush(Ecore_Wl2_Surface *surface EINA_UNUSED, void *priv_data) |
181 | { | 181 | { |
182 | Ecore_Wl2_Dmabuf_Private *p; | 182 | Ecore_Wl2_Dmabuf_Private *p; |
183 | Ecore_Wl2_Buffer *b; | 183 | Ecore_Wl2_Buffer *b; |
@@ -250,7 +250,7 @@ static Ecore_Wl2_Surface_Interface dmabuf_smanager = | |||
250 | .data_get = _evas_dmabuf_surface_data_get, | 250 | .data_get = _evas_dmabuf_surface_data_get, |
251 | .assign = _evas_dmabuf_surface_assign, | 251 | .assign = _evas_dmabuf_surface_assign, |
252 | .post = _evas_dmabuf_surface_post, | 252 | .post = _evas_dmabuf_surface_post, |
253 | .flush = _surface_flush | 253 | .flush = _evas_dmabuf_surface_flush |
254 | }; | 254 | }; |
255 | 255 | ||
256 | EAPI Ecore_Wl2_Surface * | 256 | EAPI Ecore_Wl2_Surface * |