[Webkit-unassigned] [Bug 76165] [EFL] Add visible field into ewk_tiled_backing_store's data.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Jan 15 23:27:59 PST 2012


https://bugs.webkit.org/show_bug.cgi?id=76165





--- Comment #8 from KwangHyuk <hyuki.kim at samsung.com>  2012-01-15 23:27:58 PST ---
(In reply to comment #6)
> (From update of attachment 122210 [details])
> View in context: https://bugs.webkit.org/attachment.cgi?id=122210&action=review
> 
> > Source/WebKit/efl/ChangeLog:10
> > +        Using of evas_object_visible_get() API can't gurantee the correctness of
> > +        evas_object's visible status if it's called inside of evas_object's
> > +        smart_show() method.
> 
> This sounds weird. What kind of problems were you having, and couldn't they be solved if you call the parent show/hide functions in your smart_{show,hide} _before_ the functions enabling/disabling rendering?

Double check was done.
No significant effect from change calling position of parent show/hide function.

I have also checked the return value as follows.

static void _ewk_tiled_backing_store_smart_show(Evas_Object* ewkBackingStore)
{
    printf("visible =  %d in \n",evas_object_visible_get(ewkBackingStore));
    ewk_tiled_backing_store_enable_render(ewkBackingStore);
    _parent_sc.show(ewkBackingStore);
    printf("visible =  %d out \n",evas_object_visible_get(ewkBackingStore));
}

AFAIK, as parent's methods are just for smart clipped, it calls evas_object_smart_clipped_smart_show() or hide().

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list