From: Changyeon Lee Date: Thu, 19 Sep 2024 01:23:26 +0000 (+0900) Subject: e_explicit_sync: [Temporary] Do not check that surface already has synchronization X-Git-Tag: accepted/tizen/unified/20240920.172814~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F06%2F317806%2F1;p=platform%2Fupstream%2Fenlightenment.git e_explicit_sync: [Temporary] Do not check that surface already has synchronization web engine apps create two EGLSurface from one wl_surface. this patch is temporary. Change-Id: I7487f94fdc4f0f10c0f18a86ea8e752c0467844d --- diff --git a/src/bin/server/e_explicit_sync.c b/src/bin/server/e_explicit_sync.c index 21765ca6ad..ff4182f557 100644 --- a/src/bin/server/e_explicit_sync.c +++ b/src/bin/server/e_explicit_sync.c @@ -387,6 +387,8 @@ static void _e_explicit_sync_cb_get_synchronization(struct wl_client *client, goto fail; } +/* temporary disable */ +#if 0 if (e_client_explicit_sync_get(ec)) { wl_resource_post_error(resource, @@ -395,6 +397,10 @@ static void _e_explicit_sync_cb_get_synchronization(struct wl_client *client, (unsigned int)wl_resource_get_id(surface)); goto fail; } +#else + ERR("ec:%p wl_surface resource:%u already has synchronization", + ec, (unsigned int)wl_resource_get_id(surface)); +#endif explicit_sync_surface = E_NEW(E_Explicit_Sync_Surface, 1); if (!explicit_sync_surface)