From: Changyeon Lee Date: Mon, 22 May 2023 06:36:36 +0000 (+0900) Subject: e_comp_object: add ttrace at evas_object_image_native_surface_set X-Git-Tag: accepted/tizen/unified/20230605.170338~103 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F67%2F293267%2F1;p=platform%2Fupstream%2Fenlightenment.git e_comp_object: add ttrace at evas_object_image_native_surface_set Change-Id: I0ad9a9a8c7644952169fa9046ae404b98284cfb1 --- diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 0aba85b..fc4a138 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -4927,13 +4927,17 @@ _e_comp_object_native_surface_set(E_Comp_Object *cw, Evas_Native_Surface *ns, Ei } } + TRACE_DS_BEGIN(NATIVE_SURFACE_SET); evas_object_image_native_surface_set(cw->obj, ns); + TRACE_DS_END(); if (with_mirror) { EINA_LIST_FOREACH(cw->obj_mirror, l, o) { evas_object_image_alpha_set(o, !!cw->ns ? 1 : cw->ec->argb); + TRACE_DS_BEGIN(NATIVE_SURFACE_SET); evas_object_image_native_surface_set(o, ns); + TRACE_DS_END(); } } }