Re: [Mesa-dev] [PATCH 1/2] mesa: fix up GLSL version when computing GL version

2015-04-27 Thread Ilia Mirkin
On Mon, Apr 27, 2015 at 10:22 AM, Brian Paul wrote: > On 04/27/2015 08:05 AM, Ilia Mirkin wrote: >> >> On Mon, Apr 27, 2015 at 9:58 AM, Brian Paul wrote: >>> >>> On 04/27/2015 07:39 AM, Ilia Mirkin wrote: On Mon, Apr 27, 2015 at 9:38 AM, Brian Paul wrote: > > > On 04/2

Re: [Mesa-dev] [PATCH 1/2] mesa: fix up GLSL version when computing GL version

2015-04-27 Thread Brian Paul
On 04/27/2015 08:05 AM, Ilia Mirkin wrote: On Mon, Apr 27, 2015 at 9:58 AM, Brian Paul wrote: On 04/27/2015 07:39 AM, Ilia Mirkin wrote: On Mon, Apr 27, 2015 at 9:38 AM, Brian Paul wrote: On 04/27/2015 07:23 AM, Ilia Mirkin wrote: Some required extension might be missing, and we may exp

Re: [Mesa-dev] [PATCH 1/2] mesa: fix up GLSL version when computing GL version

2015-04-27 Thread Ilia Mirkin
On Mon, Apr 27, 2015 at 9:58 AM, Brian Paul wrote: > On 04/27/2015 07:39 AM, Ilia Mirkin wrote: >> >> On Mon, Apr 27, 2015 at 9:38 AM, Brian Paul wrote: >>> >>> On 04/27/2015 07:23 AM, Ilia Mirkin wrote: Some required extension might be missing, and we may expose a GLSL versio

Re: [Mesa-dev] [PATCH 1/2] mesa: fix up GLSL version when computing GL version

2015-04-27 Thread Brian Paul
On 04/27/2015 07:39 AM, Ilia Mirkin wrote: On Mon, Apr 27, 2015 at 9:38 AM, Brian Paul wrote: On 04/27/2015 07:23 AM, Ilia Mirkin wrote: Some required extension might be missing, and we may expose a GLSL version that does not match up with the GL version. Fix that up when computing the GL ver

Re: [Mesa-dev] [PATCH 1/2] mesa: fix up GLSL version when computing GL version

2015-04-27 Thread Ilia Mirkin
On Mon, Apr 27, 2015 at 9:38 AM, Brian Paul wrote: > On 04/27/2015 07:23 AM, Ilia Mirkin wrote: >> >> Some required extension might be missing, and we may expose a GLSL >> version that does not match up with the GL version. Fix that up when >> computing the GL version. >> >> Signed-off-by: Ilia Mi

Re: [Mesa-dev] [PATCH 1/2] mesa: fix up GLSL version when computing GL version

2015-04-27 Thread Brian Paul
On 04/27/2015 07:23 AM, Ilia Mirkin wrote: Some required extension might be missing, and we may expose a GLSL version that does not match up with the GL version. Fix that up when computing the GL version. Signed-off-by: Ilia Mirkin --- src/mesa/main/version.c | 11 ++- 1 file changed

[Mesa-dev] [PATCH 1/2] mesa: fix up GLSL version when computing GL version

2015-04-27 Thread Ilia Mirkin
Some required extension might be missing, and we may expose a GLSL version that does not match up with the GL version. Fix that up when computing the GL version. Signed-off-by: Ilia Mirkin --- src/mesa/main/version.c | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a