edje: Edje_Edit - generate 'perspective' block

Summary: Adds focal and zplane perspective to the part when generating an EDC.

Reviewers: Hermet, raster, cedric

Reviewed By: cedric

Subscribers: cedric, reutskiy.v.v

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Maksym Volodin 2014-12-09 03:10:59 +01:00 committed by Cedric BAIL
parent 2f8121d66e
commit f83d23a327
1 changed files with 11 additions and 0 deletions

View File

@ -10279,6 +10279,17 @@ _edje_generate_source_of_state(Evas_Object *obj, const char *part, const char *s
BUF_APPEND(I5"}\n");
}
if ((pd->persp.zplane != 0) || (pd->persp.focal != 1000))
{
BUF_APPEND(I5"perspective {\n");
if (pd->persp.zplane != 0)
BUF_APPENDF(I6"zplane: %d;\n", pd->persp.zplane);
if (pd->persp.focal != 1000)
BUF_APPENDF(I6"focal: %d;\n", pd->persp.focal);
BUF_APPEND(I5"}\n");
}
//Image