Re: [Mesa-dev] [PATCH] mesa: Don't advertise GLES extensions in GL contexts (v2)

2012-09-04 Thread Ian Romanick
On 09/04/2012 02:05 PM, Chad Versace wrote: glGetStringi(GL_EXTENSIONS) failed to respect the context's API, and so returned all internally enabled GLES extensions from a GL context. Likewise, glGetIntegerv(GL_NUM_EXTENSIONS) also failed to repsect the context's API. v2: Really fix glGetStringi,

Re: [Mesa-dev] [PATCH] mesa: Don't advertise GLES extensions in GL contexts (v2)

2012-09-04 Thread Kenneth Graunke
On 09/04/2012 02:05 PM, Chad Versace wrote: > glGetStringi(GL_EXTENSIONS) failed to respect the context's API, and so > returned all internally enabled GLES extensions from a GL context. > Likewise, glGetIntegerv(GL_NUM_EXTENSIONS) also failed to repsect the > context's API. > > v2: Really fix glG

[Mesa-dev] [PATCH] mesa: Don't advertise GLES extensions in GL contexts (v2)

2012-09-04 Thread Chad Versace
glGetStringi(GL_EXTENSIONS) failed to respect the context's API, and so returned all internally enabled GLES extensions from a GL context. Likewise, glGetIntegerv(GL_NUM_EXTENSIONS) also failed to repsect the context's API. v2: Really fix glGetStringi, I promise. Note: This is a candidate for the

Re: [Mesa-dev] [PATCH] mesa: Don't advertise GLES extensions in GL contexts

2012-09-04 Thread Jordan Justen
On Tue, Sep 4, 2012 at 11:50 AM, Chad Versace wrote: > glGetStringi(GL_EXTENSIONS) failed to respect the context's API, and so > returned all internally enabled GLES extensions from a GL context. > Likewise, glGetIntegerv(GL_NUM_EXTENSIONS) also failed to repsect the > context's API. > > Note: Thi

[Mesa-dev] [PATCH] mesa: Don't advertise GLES extensions in GL contexts

2012-09-04 Thread Chad Versace
glGetStringi(GL_EXTENSIONS) failed to respect the context's API, and so returned all internally enabled GLES extensions from a GL context. Likewise, glGetIntegerv(GL_NUM_EXTENSIONS) also failed to repsect the context's API. Note: This is a candidate for the 8.0 and 9.0 branches. CC: Kenneth Graunk