From de8b50685130326c14ed4459fd5e85a4f872bda2 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Tue, 5 Nov 2019 09:30:48 -0500 Subject: [PATCH] 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 cd7f482..23c7f02 100755 --- a/src/modules/evas/engines/wayland_common/Evas_Engine_Wayland.h +++ b/src/modules/evas/engines/wayland_common/Evas_Engine_Wayland.h @@ -32,9 +32,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; @@ -52,6 +49,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 -- 2.7.4