Re: [Mesa-dev] [PATCH] st/dri: Add fence extension to SW path

2017-05-22 Thread Chad Versace
When you resubmit the patch again, please add (v3) to the subject. On Mon 08 May 2017, Gurchetan Singh wrote: > Use the same fence implementation for drisw.c as dri2.c by making > dri2FenceExtension an external variable. Since the fence implementation > is not dri2.c specific, put it in a

Re: [Mesa-dev] [PATCH] st/dri: Add fence extension to SW path

2017-05-15 Thread Gurchetan Singh
Ping On Mon, May 8, 2017 at 3:29 PM, Gurchetan Singh wrote: > Chrome is going to use EGLSync a lot to synchronize between EGL/KMS (along > with the flush image external extension). VM's are used for testing, so > adding this path would be helpful. > > On Fri, May

Re: [Mesa-dev] [PATCH] st/dri: Add fence extension to SW path

2017-05-15 Thread Gurchetan Singh
Ping. On Mon, May 8, 2017 at 3:25 PM, Gurchetan Singh wrote: > Use the same fence implementation for drisw.c as dri2.c by making > dri2FenceExtension an external variable. Since the fence implementation > is not dri2.c specific, put it in a separate file. This is

Re: [Mesa-dev] [PATCH] st/dri: Add fence extension to SW path

2017-05-08 Thread Gurchetan Singh
Chrome is going to use EGLSync a lot to synchronize between EGL/KMS (along with the flush image external extension). VM's are used for testing, so adding this path would be helpful. On Fri, May 5, 2017 at 5:54 PM, Emil Velikov wrote: > Hi Gurchetan, > > On 5 May 2017

[Mesa-dev] [PATCH] st/dri: Add fence extension to SW path

2017-05-08 Thread Gurchetan Singh
Use the same fence implementation for drisw.c as dri2.c by making dri2FenceExtension an external variable. Since the fence implementation is not dri2.c specific, put it in a separate file. This is desirable for synchronization in virtual machines. v2: Don't depend on dri2.c for extensions (Emil)

Re: [Mesa-dev] [PATCH] st/dri: Add fence extension to SW path

2017-05-05 Thread Emil Velikov
Hi Gurchetan, On 5 May 2017 at 20:56, Gurchetan Singh wrote: > From: Gurchetan Singh > > Use the same fence implementation for drisw.c as dri2.c by > making dri2FenceExtension an external variable. This is desirable > for synchronization

[Mesa-dev] [PATCH] st/dri: Add fence extension to SW path

2017-05-05 Thread Gurchetan Singh
From: Gurchetan Singh Use the same fence implementation for drisw.c as dri2.c by making dri2FenceExtension an external variable. This is desirable for synchronization in virtual machines. --- src/gallium/state_trackers/dri/dri2.c | 2 +-