evas-wayland-common: Move boolean fields to bottom of structure

This commit is contained in:
Christopher Michael 2019-11-05 09:30:48 -05:00
parent 9eb745a3c1
commit 2fe6d59321
1 changed files with 2 additions and 3 deletions

View File

@ -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