devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=2fe6d593212e09cb3cddfc509ad805d25cb2f926
commit 2fe6d593212e09cb3cddfc509ad805d25cb2f926 Author: Christopher Michael <[email protected]> Date: Tue Nov 5 09:30:48 2019 -0500 evas-wayland-common: Move boolean fields to bottom of structure --- src/modules/evas/engines/wayland_common/Evas_Engine_Wayland.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/modules/evas/engines/wayland_common/Evas_Engine_Wayland.h b/src/modules/evas/engines/wayland_common/Evas_Engine_Wayland.h index 8225924ec3..d531ded2e5 100644 --- a/src/modules/evas/engines/wayland_common/Evas_Engine_Wayland.h +++ b/src/modules/evas/engines/wayland_common/Evas_Engine_Wayland.h @@ -24,9 +24,6 @@ struct _Evas_Engine_Info_Wayland /* non-blocking or blocking mode */ Evas_Engine_Render_Mode render_mode; - Eina_Bool indirect : 1; - - Eina_Bool www_avail : 1; Eina_Rectangle window; int x_rel, y_rel; int x_cursor, y_cursor; @@ -41,6 +38,8 @@ struct _Evas_Engine_Info_Wayland Eina_Bool drag_stop : 1; Eina_Bool drag_ack : 1; Eina_Bool resizing : 1; + Eina_Bool indirect : 1; + Eina_Bool www_avail : 1; }; #endif --
