evas-wayland-common: Move boolean fields to bottom of structure
authorChristopher Michael <cp.michael@samsung.com>
Tue, 5 Nov 2019 14:30:48 +0000 (09:30 -0500)
committerWonki Kim <wonki_.kim@samsung.com>
Mon, 11 Nov 2019 02:20:42 +0000 (11:20 +0900)
src/modules/evas/engines/wayland_common/Evas_Engine_Wayland.h

index cd7f482..23c7f02 100755 (executable)
@@ -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