edje: add fixed automatically for optimizing edje calc speed. 53/68253/3
authorHosang Kim <hosang12.kim@samsung.com>
Thu, 17 Mar 2016 18:12:34 +0000 (11:12 -0700)
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>
Thu, 30 Jun 2016 06:57:08 +0000 (23:57 -0700)
commiteccf071dd53721d1a4d8e81b1851a0135ccacc03
treeaff6a998a09458d00fc3f8645100bbe338fdac4c
parentf2a63099cef92cefea92a4be7431ae5bc135903b
edje: add fixed automatically for optimizing edje calc speed.

Summary:
Applications usually use edje syntax like as,

```
 part { name :"bg";
     type: SWALLOW;
     description {
          state: "default" 0.0;
          rel1.relative: 0.0 0.0;
          rel2.relative: 0.0 0.0;
          align: 0.0 0.0;
          min: 100 100;
     }
 }

```
But edje does not calculate it exactly without "fixed: 1 1".
So edje calculation is repeated until 4000 x 4000, it is waste of time.

Reviewers: woohyun, raster, Hermet, id213sin, cedric

Reviewed By: cedric

Subscribers: cedric, jpeg

Differential Revision: https://phab.enlightenment.org/D3801

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Change-Id: I36a0983fe5af1916d7b904c5c82d988f12c94784
src/lib/edje/edje_calc.c