diff options
author | Jaeun Choi <jaeun12.choi@samsung.com> | 2014-11-17 13:16:56 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2015-01-07 15:06:02 +0900 |
commit | 145fe108b8fe477161136317f65145bc5102a059 (patch) | |
tree | 0846a04c224562c109106053284b14ae49afebe3 /src/bin/edje | |
parent | 6e8e5e89b594670cbce979b272697c87108f39da (diff) |
Evas masking: Add edje support
Signed-off-by: Jean-Philippe Andre <jp.andre@samsung.com>
Diffstat (limited to 'src/bin/edje')
-rwxr-xr-x | src/bin/edje/edje_cc_out.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bin/edje/edje_cc_out.c b/src/bin/edje/edje_cc_out.c index 16c02934fd..674f534dc0 100755 --- a/src/bin/edje/edje_cc_out.c +++ b/src/bin/edje/edje_cc_out.c | |||
@@ -424,8 +424,9 @@ check_part(Edje_Part_Collection *pc, Edje_Part *ep, Eet_File *ef) | |||
424 | 424 | ||
425 | /* FIXME: When mask are supported remove this check */ | 425 | /* FIXME: When mask are supported remove this check */ |
426 | if (ep->clip_to_id != -1 && | 426 | if (ep->clip_to_id != -1 && |
427 | pc->parts[ep->clip_to_id]->type != EDJE_PART_TYPE_RECTANGLE) | 427 | (pc->parts[ep->clip_to_id]->type != EDJE_PART_TYPE_RECTANGLE) && |
428 | error_and_abort(ef, "Collection %i: clip_to point to a non RECT part '%s' !", | 428 | (pc->parts[ep->clip_to_id]->type != EDJE_PART_TYPE_IMAGE)) |
429 | error_and_abort(ef, "Collection %i: clip_to point to a non RECT/IMAGE part '%s' !", | ||
429 | pc->id, pc->parts[ep->clip_to_id]->name); | 430 | pc->id, pc->parts[ep->clip_to_id]->name); |
430 | } | 431 | } |
431 | 432 | ||