Re: [Mesa-dev] [PATCH] mesa: check API profile for GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION

2017-07-19 Thread Ian Romanick
On 07/19/2017 07:21 AM, Brian Paul wrote: > On 07/18/2017 05:28 PM, Ian Romanick wrote: >> On 07/18/2017 01:20 PM, Brian Paul wrote: >>> If we have a compat profile context, it means that GL_QUADS[_STRIP] are >>> supported so this query makes sense. It's also legal for 3.2 core >>> profile >>>

Re: [Mesa-dev] [PATCH] mesa: check API profile for GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION

2017-07-19 Thread Brian Paul
On 07/18/2017 05:28 PM, Ian Romanick wrote: On 07/18/2017 01:20 PM, Brian Paul wrote: If we have a compat profile context, it means that GL_QUADS[_STRIP] are supported so this query makes sense. It's also legal for 3.2 core profile because of a spec bug. Do you know of any apps that depend

Re: [Mesa-dev] [PATCH] mesa: check API profile for GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION

2017-07-18 Thread Ian Romanick
On 07/18/2017 01:20 PM, Brian Paul wrote: > If we have a compat profile context, it means that GL_QUADS[_STRIP] are > supported so this query makes sense. It's also legal for 3.2 core profile > because of a spec bug. Do you know of any apps that depend on that spec bug? In most similar cases,

[Mesa-dev] [PATCH] mesa: check API profile for GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION

2017-07-18 Thread Brian Paul
If we have a compat profile context, it means that GL_QUADS[_STRIP] are supported so this query makes sense. It's also legal for 3.2 core profile because of a spec bug. --- src/mesa/main/get.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/get.c