Reduce size of Ecore_Wl_Window structure.

Removed 2 Eina_Rectangles from window structure as we only use width &
height anyway, so we can store those as ints.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-08-29 08:44:02 +01:00
parent 2811dad225
commit d1b4362b52
1 changed files with 5 additions and 1 deletions

View File

@ -218,7 +218,11 @@ struct _Ecore_Wl_Window
int edges;
Eina_Rectangle allocation;
Eina_Rectangle saved_allocation, server_allocation;
struct
{
int w, h;
} saved, server;
/* Eina_Bool redraw_scheduled : 1; */
/* Eina_Bool resize_scheduled : 1; */