Evas textblock: add a stringshare fastpath to markup_set
authorDaniel Hirt <daniel.hirt@samsung.com>
Sun, 28 Feb 2016 15:49:20 +0000 (17:49 +0200)
committerTom Hacohen <tom@stosb.com>
Mon, 29 Feb 2016 08:59:24 +0000 (08:59 +0000)
This optimization makes use of already stringshare'd text and avoids
unnecessary stringshare_add calls in markup_set. It improves the
performance of edje_calc when reapplying text to the textblock part.

src/lib/evas/canvas/evas_object_textblock.c

index 158c84b..006bdac 100644 (file)
@@ -6849,6 +6849,12 @@ _evas_textblock_text_markup_set(Eo *eo_obj EINA_UNUSED, Evas_Textblock_Data *o,
    Evas_Object_Protected_Data *obj = eo_data_scope_get(eo_obj, EVAS_OBJECT_CLASS);
    evas_object_async_block(obj);
 
+   if (text == o->markup_text)
+     {
+        /* Text is the same and already stringshared, do nothing */
+        return;
+     }
+   else
      {
         text = eina_stringshare_add(text);
         if (text == o->markup_text)