From 2055da0146c59e42d0eeead92ca33f1cc38d917c Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Fri, 17 Dec 2021 13:48:19 +0900 Subject: [PATCH] evas canvas: remove tizen only code. remove the temporary api usage, correct the right api call. Change-Id: I49077d27845a16c1b8722accc295513510eafdc7 --- src/lib/evas/canvas/efl_canvas_vg_shape.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/evas/canvas/efl_canvas_vg_shape.c b/src/lib/evas/canvas/efl_canvas_vg_shape.c index 5ae2a34..adc223e 100644 --- a/src/lib/evas/canvas/efl_canvas_vg_shape.c +++ b/src/lib/evas/canvas/efl_canvas_vg_shape.c @@ -725,8 +725,7 @@ _efl_canvas_vg_shape_efl_gfx_path_bounds_get(const Eo *obj EINA_UNUSED, Eina_Rect *r) { float px, py, pw, ph; - //TODO: MUST BE RENAMED to tvg_paint_get_bounds() - _tvg_paint_get_bounds(sd->shape, &px, &py, &pw, &ph, false); + tvg_paint_get_bounds(sd->shape, &px, &py, &pw, &ph, false); r->x = (int)px; r->y = (int)py; r->w = (int)pw; -- 2.7.4