summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Michael <cp.michael@samsung.com>2019-11-05 09:30:48 -0500
committerChristopher Michael <cp.michael@samsung.com>2019-11-05 09:36:20 -0500
commit2fe6d593212e09cb3cddfc509ad805d25cb2f926 (patch)
treeb7469d72fb1bbb42a3fb980efece2d1d32e389a2
parent9eb745a3c1b93b89c1680dea3f1ed33ed8e28cd9 (diff)
downloadefl-2fe6d593212e09cb3cddfc509ad805d25cb2f926.tar.gz
evas-wayland-common: Move boolean fields to bottom of structure
-rw-r--r--src/modules/evas/engines/wayland_common/Evas_Engine_Wayland.h5
1 files 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