Re: [Mesa-dev] [PATCH] glsl: Reallow precision qualifiers on structure members

2013-08-30 Thread Ian Romanick
On 08/30/2013 03:34 PM, Kenneth Graunke wrote: > On 08/30/2013 02:35 PM, Ian Romanick wrote: >> From: Ian Romanick >> >> Changes to the grammar for GL_ARB_shading_language_420pack (commit >> 6eec502) moved precision qualifiers out of the type_specifier production >> chain. This caused declaration

Re: [Mesa-dev] [PATCH] glsl: Reallow precision qualifiers on structure members

2013-08-30 Thread Kenneth Graunke
On 08/30/2013 02:35 PM, Ian Romanick wrote: From: Ian Romanick Changes to the grammar for GL_ARB_shading_language_420pack (commit 6eec502) moved precision qualifiers out of the type_specifier production chain. This caused declarations such as: struct S { lowp float f; }; t

Re: [Mesa-dev] [PATCH] glsl: Reallow precision qualifiers on structure members

2013-08-30 Thread Matt Turner
Reviewed-by: Matt Turner ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

[Mesa-dev] [PATCH] glsl: Reallow precision qualifiers on structure members

2013-08-30 Thread Ian Romanick
From: Ian Romanick Changes to the grammar for GL_ARB_shading_language_420pack (commit 6eec502) moved precision qualifiers out of the type_specifier production chain. This caused declarations such as: struct S { lowp float f; }; to generate parse errors. Section 4.1.8 (Structur