diff options
author | Christopher Michael <cp.michael@samsung.com> | 2019-11-05 09:19:41 -0500 |
---|---|---|
committer | Christopher Michael <cp.michael@samsung.com> | 2019-11-05 09:35:48 -0500 |
commit | 49498f798bb60c5e3268ffe6721abcf13e93a367 (patch) | |
tree | 164df309f08edf34f584d03a80f194588cdd27b0 /src | |
parent | e451a9127019e756e8f8dd9f894ad167b5740ded (diff) |
ecore-wl2: Move ecore_wl2_surface_assign function to be internal
As this function is only used in 1 place and will likely never be used
outside of the modular dmabuf engine, we can move it to be internal
only.
ref T8013
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/ecore_wl2/Ecore_Wl2.h | 1 | ||||
-rw-r--r-- | src/lib/ecore_wl2/ecore_wl2_internal.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_wl2/Ecore_Wl2.h b/src/lib/ecore_wl2/Ecore_Wl2.h index 5ba2f82..e6b189c 100644 --- a/src/lib/ecore_wl2/Ecore_Wl2.h +++ b/src/lib/ecore_wl2/Ecore_Wl2.h | |||
@@ -2006,7 +2006,6 @@ EAPI void ecore_wl2_window_update_begin(Ecore_Wl2_Window *window); | |||
2006 | /* TODO: doxygen if we are keeping any of the below functions public */ | 2006 | /* TODO: doxygen if we are keeping any of the below functions public */ |
2007 | 2007 | ||
2008 | 2008 | ||
2009 | EAPI int ecore_wl2_surface_assign(Ecore_Wl2_Surface *surface); | ||
2010 | EAPI void ecore_wl2_surface_post(Ecore_Wl2_Surface *surface, Eina_Rectangle *rects, unsigned int count); | 2009 | EAPI void ecore_wl2_surface_post(Ecore_Wl2_Surface *surface, Eina_Rectangle *rects, unsigned int count); |
2011 | EAPI void ecore_wl2_surface_flush(Ecore_Wl2_Surface *surface, Eina_Bool purge); | 2010 | EAPI void ecore_wl2_surface_flush(Ecore_Wl2_Surface *surface, Eina_Bool purge); |
2012 | EAPI void ecore_wl2_window_surface_flush(Ecore_Wl2_Window *window, Eina_Bool purge); | 2011 | EAPI void ecore_wl2_window_surface_flush(Ecore_Wl2_Window *window, Eina_Bool purge); |
diff --git a/src/lib/ecore_wl2/ecore_wl2_internal.h b/src/lib/ecore_wl2/ecore_wl2_internal.h index 385ddd5..dd840a2 100644 --- a/src/lib/ecore_wl2/ecore_wl2_internal.h +++ b/src/lib/ecore_wl2/ecore_wl2_internal.h | |||
@@ -61,6 +61,7 @@ EAPI Ecore_Wl2_Surface *ecore_wl2_surface_create(Ecore_Wl2_Window *win, Eina_Boo | |||
61 | EAPI void ecore_wl2_surface_destroy(Ecore_Wl2_Surface *surface); | 61 | EAPI void ecore_wl2_surface_destroy(Ecore_Wl2_Surface *surface); |
62 | EAPI void ecore_wl2_surface_reconfigure(Ecore_Wl2_Surface *surface, int w, int h, uint32_t flags, Eina_Bool alpha); | 62 | EAPI void ecore_wl2_surface_reconfigure(Ecore_Wl2_Surface *surface, int w, int h, uint32_t flags, Eina_Bool alpha); |
63 | EAPI void *ecore_wl2_surface_data_get(Ecore_Wl2_Surface *surface, int *w, int *h); | 63 | EAPI void *ecore_wl2_surface_data_get(Ecore_Wl2_Surface *surface, int *w, int *h); |
64 | EAPI int ecore_wl2_surface_assign(Ecore_Wl2_Surface *surface); | ||
64 | 65 | ||
65 | # undef EAPI | 66 | # undef EAPI |
66 | # define EAPI | 67 | # define EAPI |