diff options
author | JunsuChoi <jsuya.choi@samsung.com> | 2019-06-11 19:01:11 +0900 |
---|---|---|
committer | Hermet Park <hermetpark@gmail.com> | 2019-06-21 17:44:41 +0900 |
commit | 593ee304407714dec9152f482600721b763e1e6f (patch) | |
tree | e06bbf51ac3655f217db722c501d2492469864cc | |
parent | 270c61dbb74f8f6e4f800f78b054a9da8cb84848 (diff) | |
download | efl-593ee304407714dec9152f482600721b763e1e6f.tar.gz |
vg_common_json: Set container's alpha color
Summary: If the layer has an alpha value, we have make it available to container.
Test Plan: N/A
Reviewers: Hermet, smohanty
Reviewed By: Hermet
Subscribers: cedric, #reviewers, kimcinoo, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D9081
-rw-r--r-- | src/static_libs/vg_common/vg_common_json.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/static_libs/vg_common/vg_common_json.c b/src/static_libs/vg_common/vg_common_json.c index 3d00bbb842..f289bd65b4 100644 --- a/src/static_libs/vg_common/vg_common_json.c +++ b/src/static_libs/vg_common/vg_common_json.c @@ -361,6 +361,11 @@ _update_vg_tree(Efl_Canvas_Vg_Container *root, const LOTLayerNode *layer, int de for (int i = 0; i < depth; i++) printf(" "); printf("%s (%p) matte:%d => %p\n", efl_class_name_get(efl_class_get(ctree)), ctree, matte_mode, ptree); #endif + + //Set Container's alpha color + if (clayer->mAlpha < 255) + efl_gfx_color_set(ctree, clayer->mAlpha, clayer->mAlpha, clayer->mAlpha, clayer->mAlpha); + _update_vg_tree(ctree, clayer, depth+1); if (matte_mode != 0) @@ -438,6 +443,8 @@ vg_common_json_create_vg_node(Vg_File_Data *vfd) efl_key_data_set(root, _get_key_val((void *) tree), tree); vfd->root = root; } + if (tree->mAlpha < 255) + efl_gfx_color_set(root, tree->mAlpha, tree->mAlpha, tree->mAlpha, tree->mAlpha); _update_vg_tree(root, tree, 1); #else |