Default values of strokeCap and strokeJoin differs in EFL and THORVG.
Set EFL default values to prevent inconsistency
Change-Id: Ib935f7470f9d64a63b9dfdd06b6d0dcc50de8f29
//when object is visible, renderer changes opacity to valid value.
tvg_paint_set_opacity(pd->shape, 0);
+ //default values of strokeCap and strokeJoin differs in EFL and THORVG
+ //set EFL default to prevent inconsistency
+ tvg_shape_set_stroke_cap(pd->shape, _efl_to_tvg_stroke_cap((Evas_Vg_Cap)0));
+ tvg_shape_set_stroke_join(pd->shape, _efl_to_tvg_stroke_join((Evas_Vg_Join)0));
+
nd->data = pd;
return obj;
}