Re: [Mesa-dev] [PATCH] i965: enable ARB_shader_precision

2016-05-16 Thread Kenneth Graunke
On Monday, May 16, 2016 3:11:12 PM PDT Alejandro Piñeiro wrote: > At this moment the documentation says: > GL_ARB_shader_precision DONE (all drivers that support GLSL 4.10) > > On the intel drivers, GLSLVersion is being updated based on the > extensions being completed. So this patch just enable

Re: [Mesa-dev] [PATCH] i965: enable ARB_shader_precision

2016-05-16 Thread Ilia Mirkin
On Mon, May 16, 2016 at 9:11 AM, Alejandro Piñeiro wrote: > At this moment the documentation says: > GL_ARB_shader_precision DONE (all drivers that support GLSL 4.10) > > On the intel drivers, GLSLVersion is being updated based on the > extensions being completed. So this patch just enables the

[Mesa-dev] [PATCH] i965: enable ARB_shader_precision

2016-05-16 Thread Alejandro Piñeiro
At this moment the documentation says: GL_ARB_shader_precision DONE (all drivers that support GLSL 4.10) On the intel drivers, GLSLVersion is being updated based on the extensions being completed. So this patch just enables the extension for GLSLVersion >= 410. --- Some extra info: This was de