Re: [Mesa-dev] [RFC 3/3] mesa: expose KHR_no_error for GL

2017-03-29 Thread Samuel Pitoiset
On 03/29/2017 11:01 PM, Timothy Arceri wrote: On 30/03/17 06:53, Marek Olšák wrote: The series looks good to me except the "==" -> "&" in patch 2. The patches have no effect without the GLX extension, right? Correct. I was partly sending this out to see if anyone knew what was going on sin

Re: [Mesa-dev] [RFC 3/3] mesa: expose KHR_no_error for GL

2017-03-29 Thread Timothy Arceri
On 30/03/17 06:53, Marek Olšák wrote: The series looks good to me except the "==" -> "&" in patch 2. The patches have no effect without the GLX extension, right? Correct. I was partly sending this out to see if anyone knew what was going on since Nvidia exposes this on their driver but I cou

Re: [Mesa-dev] [RFC 3/3] mesa: expose KHR_no_error for GL

2017-03-29 Thread Marek Olšák
The series looks good to me except the "==" -> "&" in patch 2. The patches have no effect without the GLX extension, right? Marek On Tue, Mar 28, 2017 at 6:35 AM, Timothy Arceri wrote: > There ES is no support for now as this requires > EGL_KHR_create_context_no_error to be implemented. > --- >

Re: [Mesa-dev] [RFC 3/3] mesa: expose KHR_no_error for GL

2017-03-27 Thread Timothy Arceri
On 28/03/17 16:12, Ilia Mirkin wrote: On Tue, Mar 28, 2017 at 1:10 AM, Timothy Arceri wrote: On 28/03/17 15:39, Ilia Mirkin wrote: Why can't we just have this on ES as-is? It should support context flags just fine... that's how e.g. robustness is done there, no? (Note that ES makes no require

Re: [Mesa-dev] [RFC 3/3] mesa: expose KHR_no_error for GL

2017-03-27 Thread Ilia Mirkin
On Tue, Mar 28, 2017 at 1:12 AM, Ilia Mirkin wrote: > On Tue, Mar 28, 2017 at 1:10 AM, Timothy Arceri wrote: >> On 28/03/17 15:39, Ilia Mirkin wrote: >>> >>> Why can't we just have this on ES as-is? It should support context >>> flags just fine... that's how e.g. robustness is done there, no? (No

Re: [Mesa-dev] [RFC 3/3] mesa: expose KHR_no_error for GL

2017-03-27 Thread Ilia Mirkin
On Tue, Mar 28, 2017 at 1:10 AM, Timothy Arceri wrote: > On 28/03/17 15:39, Ilia Mirkin wrote: >> >> Why can't we just have this on ES as-is? It should support context >> flags just fine... that's how e.g. robustness is done there, no? (Note >> that ES makes no requirement for EGL - an ES context

Re: [Mesa-dev] [RFC 3/3] mesa: expose KHR_no_error for GL

2017-03-27 Thread Timothy Arceri
On 28/03/17 15:39, Ilia Mirkin wrote: Why can't we just have this on ES as-is? It should support context flags just fine... that's how e.g. robustness is done there, no? (Note that ES makes no requirement for EGL - an ES context can be created with GLX as well, in case it matters.) Well I guess w

Re: [Mesa-dev] [RFC 3/3] mesa: expose KHR_no_error for GL

2017-03-27 Thread Ilia Mirkin
Why can't we just have this on ES as-is? It should support context flags just fine... that's how e.g. robustness is done there, no? (Note that ES makes no requirement for EGL - an ES context can be created with GLX as well, in case it matters.) On Tue, Mar 28, 2017 at 12:35 AM, Timothy Arceri wro

[Mesa-dev] [RFC 3/3] mesa: expose KHR_no_error for GL

2017-03-27 Thread Timothy Arceri
There ES is no support for now as this requires EGL_KHR_create_context_no_error to be implemented. --- src/mesa/main/extensions_table.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/main/extensions_table.h b/src/mesa/main/extensions_table.h index ec71791..4439731 100644 --- a/src/me