Re: [Mesa-dev] [PATCH mesa 3/8] eglapi: add entrypoint for eglClientWaitSyncKHR

2017-02-20 Thread Emil Velikov
On 20 February 2017 at 00:03, Eric Engestrom wrote: > On Sunday, 2017-02-19 18:54:51 -0500, Ilia Mirkin wrote: >> On Sun, Feb 19, 2017 at 6:51 PM, Eric Engestrom wrote: >> > On Sunday, 2017-02-19 18:33:16 -0500, Ilia Mirkin wrote: >> >> Why are patches 1-3 necessary? >> > >> > They allow patch #4

Re: [Mesa-dev] [PATCH mesa 3/8] eglapi: add entrypoint for eglClientWaitSyncKHR

2017-02-19 Thread Eric Engestrom
On Sunday, 2017-02-19 18:54:51 -0500, Ilia Mirkin wrote: > On Sun, Feb 19, 2017 at 6:51 PM, Eric Engestrom wrote: > > On Sunday, 2017-02-19 18:33:16 -0500, Ilia Mirkin wrote: > >> Why are patches 1-3 necessary? > > > > They allow patch #4, which makes use of a macro to simplify the list, > > (requ

Re: [Mesa-dev] [PATCH mesa 3/8] eglapi: add entrypoint for eglClientWaitSyncKHR

2017-02-19 Thread Ilia Mirkin
On Sun, Feb 19, 2017 at 6:51 PM, Eric Engestrom wrote: > On Sunday, 2017-02-19 18:33:16 -0500, Ilia Mirkin wrote: >> Why are patches 1-3 necessary? > > They allow patch #4, which makes use of a macro to simplify the list, > (requires a 1:1 mapping of entrypoint to function) which also allows for >

Re: [Mesa-dev] [PATCH mesa 3/8] eglapi: add entrypoint for eglClientWaitSyncKHR

2017-02-19 Thread Eric Engestrom
On Sunday, 2017-02-19 18:33:16 -0500, Ilia Mirkin wrote: > Why are patches 1-3 necessary? They allow patch #4, which makes use of a macro to simplify the list, (requires a 1:1 mapping of entrypoint to function) which also allows for the simple sorting test script in patch #7. I could do without, b

Re: [Mesa-dev] [PATCH mesa 3/8] eglapi: add entrypoint for eglClientWaitSyncKHR

2017-02-19 Thread Ilia Mirkin
Why are patches 1-3 necessary? On Sun, Feb 19, 2017 at 6:23 PM, Eric Engestrom wrote: > Signed-off-by: Eric Engestrom > --- > src/egl/main/eglapi.c | 31 --- > 1 file changed, 24 insertions(+), 7 deletions(-) > > diff --git a/src/egl/main/eglapi.c b/src/egl/main/egla

[Mesa-dev] [PATCH mesa 3/8] eglapi: add entrypoint for eglClientWaitSyncKHR

2017-02-19 Thread Eric Engestrom
Signed-off-by: Eric Engestrom --- src/egl/main/eglapi.c | 31 --- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/src/egl/main/eglapi.c b/src/egl/main/eglapi.c index e149c0f8d1..e44375a106 100644 --- a/src/egl/main/eglapi.c +++ b/src/egl/main/eglapi.c @@