<div dir="ltr">Now I understand calling wl_surface_commit from different thread is not the problem. wl_surface_commit has to be called inside the swapbuffer before return, otherwise keeps waiting in the event loop. Is there any way to pump the event queue after return from swapbuffer may be from different thread. <br>

<br>Modified the simple-shm.c, there are 2 cases when SEM_WAIT = 0, in the main thread redraw function will not wait for the commit and commit will be performed by the commitworker thread, this results in the issue currently facing. <br>

If SEM_WAIT = 0, wl_surface_commit is sequential, everything seems to be fine.<br>Any idea what event need to be posted in the commitworker to pump the event queue.<br><br>diff --git a/Makefile.am b/Makefile.am<br>index dc50da3..02d7869<br>

--- a/Makefile.am<br>+++ b/Makefile.am<br>@@ -387,7 +387,7 @@ weston_simple_shm_SOURCES =            \<br>     shared/os-compatibility.c        \<br>     shared/os-compatibility.h<br> weston_simple_shm_CFLAGS = $(AM_CFLAGS) $(SIMPLE_CLIENT_CFLAGS)<br>

-weston_simple_shm_LDADD = $(SIMPLE_CLIENT_LIBS)<br>+weston_simple_shm_LDADD = $(SIMPLE_CLIENT_LIBS) -lpthread<br> <br> weston_simple_touch_SOURCES =            \<br>     clients/simple-touch.c            \<br>diff --git a/clients/simple-shm.c b/clients/simple-shm.c<br>

old mode 100644<br>new mode 100755<br>index 40f1633..4078b2f<br>--- a/clients/simple-shm.c<br>+++ b/clients/simple-shm.c<br>@@ -31,11 +31,14 @@<br> #include <unistd.h><br> #include <sys/mman.h><br> #include <signal.h><br>

+#include <pthread.h><br>+#include <semaphore.h><br> <br> #include <wayland-client.h><br> #include "../shared/os-compatibility.h"<br> #include "xdg-shell-client-protocol.h"<br>-<br>+const int SEM_WAIT = 0;<br>

+#define SHARED 1<br> struct display {<br>     struct wl_display *display;<br>     struct wl_registry *registry;<br>@@ -45,6 +48,9 @@ struct display {<br>     uint32_t formats;<br> };<br> <br>+sem_t empty, full;    /* the global semaphores */<br>

+pthread_t commitThread;<br>+<br> struct buffer {<br>     struct wl_buffer *buffer;<br>     void *shm_data;<br>@@ -308,7 +314,12 @@ redraw(void *data, struct wl_callback *callback, uint32_t time)<br> <br>     window->callback = wl_surface_frame(window->surface);<br>

     wl_callback_add_listener(window->callback, &frame_listener, window);<br>-    wl_surface_commit(window->surface);<br>+ <br>+    sem_post(&full);<br>+    if(SEM_WAIT == 1)<br>+    {<br>+        sem_wait(&empty);<br>

+    }<br>     buffer->busy = 1;<br> }<br> <br>@@ -421,6 +432,17 @@ signal_int(int signum)<br>     running = 0;<br> }<br> <br>+void* commitWorker(void* arg)<br>+{<br>+    struct window *window = arg;<br>+    while (1) <br>

+    {<br>+        sem_wait(&full);<br>+        wl_surface_commit(window->surface);<br>+        sem_post(&empty);<br>+    }<br>+    return NULL;<br>+}<br> int<br> main(int argc, char **argv)<br> {<br>@@ -430,6 +452,7 @@ main(int argc, char **argv)<br>

     int ret = 0;<br> <br>     display = create_display();<br>+            <br>     window = create_window(display, 250, 250);<br>     if (!window)<br>         return 1;<br>@@ -439,6 +462,10 @@ main(int argc, char **argv)<br>

     sigint.sa_flags = SA_RESETHAND;<br>     sigaction(SIGINT, &sigint, NULL);<br> <br>+    sem_init(&empty, SHARED, 0);  /* sem empty = 1 */<br>+    sem_init(&full, SHARED, 0);   /* sem full = 0  */<br>+    pthread_create(&commitThread, NULL, &commitWorker, window);<br>

+<br>     /* Initialise damage to full surface, so the padding gets painted */<br>     wl_surface_damage(window->surface, 0, 0,<br>               window->width, window->height);<br><br></div><div class="gmail_extra">

<br><br><div class="gmail_quote">On Fri, Feb 7, 2014 at 8:18 AM, Jason Ekstrand <span dir="ltr"><<a href="mailto:jason@jlekstrand.net" target="_blank">jason@jlekstrand.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div dir="ltr"><div><div><div><div><div>Hi Prabhu,<br></div>Could you be a little more specific as to what you are doing.  It sounds like you are either writing a client or trying to write the client-side wayland bits for a driver stack.  However, it's kind of hard from you description to tell exactly what you're working on.  Nevertheless, I will try to answer your question as best I can.<br>


<br></div>While Weston itself is single-threaded, the libwayland client library can handle multiple threads rather well.  Look into wl_event_queue which allows you to manage what events get called on what thread.  Also, any request can be called from any thread.  The only issue is in the synchronization that your app may need to do (know when wl_surface.commit occurs relative to wl_shell_surface.set_maximized for instance).  If you want to get a frame completion event in another thread, simply call wl_surface.frame, wl_surface.commit and then add the callback you got from wl_surface.frame to the wl_event_queue for that thread.<br>


<br></div>Also, I'm confused by the relationship between your eglSwapBuffers calls and your wl_surface.commit calls.  eglSwapBuffers should be calling wl_surface.commit before it returns.  Sometimes this means the underlying graphics drivers pass sync fences or do other things to keep from doing a full glFinish and stalling the GPU. Therefore, in most cases, you shouldn't need to be calling wl_surface.commit manually.  Perhaps I'm just misunderstanding something?<br>


<br></div>I hope that helps,<br></div>--Jason Ekstrand<br></div><div class="gmail_extra"><br><br><div class="gmail_quote"><div><div class="h5">On Fri, Feb 7, 2014 at 8:03 AM, Prabhu S <span dir="ltr"><<a href="mailto:prabhusundar@gmail.com" target="_blank">prabhusundar@gmail.com</a>></span> wrote:<br>


</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5"><div dir="ltr"><div><div><div>Hello,<br>eglSwapBuffers is a non blocking call. Normally, 3D GPU will be used both for content creation and composition, in that case everything will end up the GPU unit. So the end frame will be will be synchronized. (assuming 1 GPU unit).<br>




<br>I have a scenario, where 3D GPU being used for creating content and blit engine used for Weston composition. I'm getting frame completion from 3D engine in different thread (not in the same thread eglSwapBuffers calling thread). Currently eglSwapBuffers calling thread need to wait for the frame completion and then call wl_surface_commit to notify Wayland compositor. This takes out most of the performance since GPUs are not active all the time.<br>




<br></div>wl_surface_commit cannot be called from different thread AFAIK. Some advise, suggestions would be appreciated.<br><br></div>Thanks<span><font color="#888888"><br></font></span></div><span><font color="#888888">Prabhu<br>


</font></span></div>
<br></div></div>_______________________________________________<br>
wayland-devel mailing list<br>
<a href="mailto:wayland-devel@lists.freedesktop.org" target="_blank">wayland-devel@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/wayland-devel" target="_blank">http://lists.freedesktop.org/mailman/listinfo/wayland-devel</a><br>
<br></blockquote></div><br></div>
</blockquote></div><br></div>