From a569a4eb276720fb0dcd56c6b9fd27d1a9156619 Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Thu, 22 Aug 2019 12:51:53 +0900 Subject: [PATCH] vg_common_json: Support stroke miterlimit Summary: Apply miterlimit received from the node to vg_shape. Depends D9657 D9665 Test Plan: N/A Reviewers: Hermet, smohanty, kimcinoo Reviewed By: Hermet Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D9666 --- src/static_libs/vg_common/vg_common_json.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/static_libs/vg_common/vg_common_json.c b/src/static_libs/vg_common/vg_common_json.c index 47923c95aa..27fc86e7e6 100644 --- a/src/static_libs/vg_common/vg_common_json.c +++ b/src/static_libs/vg_common/vg_common_json.c @@ -149,6 +149,8 @@ _construct_drawable_nodes(Efl_Canvas_Vg_Container *parent, const LOTLayerNode *l } efl_gfx_shape_stroke_join_set(shape, join); + efl_gfx_shape_stroke_miterlimit_set(shape, node->mStroke.miterLimit); + //Stroke Dash if (node->mStroke.dashArraySize > 0) {