* edje: Fix memory count.

SVN revision: 41664
This commit is contained in:
Cedric BAIL 2009-08-10 15:18:07 +00:00
parent 7f9a41a824
commit 280010f404
1 changed files with 4 additions and 4 deletions

View File

@ -821,11 +821,11 @@ struct _Edje_Real_Part
int state; // 4 int state; // 4
#endif #endif
} param1, param2, custom; // 60 // FIXME: custom should be alloced on demand - 20-- } param1, param2, custom; // 60 // FIXME: custom should be alloced on demand - 20--
// WITH EDJE_CALC_CACHE: 180 // WITH EDJE_CALC_CACHE: 420
#ifdef EDJE_CALC_CACHE #ifdef EDJE_CALC_CACHE
Edje_Calc_Params p; Edje_Calc_Params p; // 116
int state; int state; // 4
#endif #endif
Edje_Real_Part *confine_to; // 4 // fixme - make part of drag Edje_Real_Part *confine_to; // 4 // fixme - make part of drag
@ -845,7 +845,7 @@ struct _Edje_Real_Part
unsigned char invalidate : 1; unsigned char invalidate : 1;
#endif #endif
}; // 394 }; // 394
// WITH EDJE_CALC_CACHE: 514 // WITH EDJE_CALC_CACHE: 874
struct _Edje_Running_Program struct _Edje_Running_Program
{ {