Re: [Mesa-dev] [PATCH] glsl: fix duplicated layout qualifier detection for GS

2014-07-03 Thread Jordan Justen
On 2014-07-03 07:18:42, Samuel Iglesias Gonsálvez wrote: > On Wed, 2014-07-02 at 12:47 -0700, Jordan Justen wrote: > > Reviewed-by: Jordan Justen > > I don't have commit access to the repository. > > Would you mind pushing this patch to master? Pushed. Thanks for the patch! -Jordan signature

Re: [Mesa-dev] [PATCH] glsl: fix duplicated layout qualifier detection for GS

2014-07-03 Thread Samuel Iglesias Gonsálvez
On Wed, 2014-07-02 at 12:47 -0700, Jordan Justen wrote: > Reviewed-by: Jordan Justen > I don't have commit access to the repository. Would you mind pushing this patch to master? Sam signature.asc Description: This is a digitally signed message part ___

Re: [Mesa-dev] [PATCH] glsl: fix duplicated layout qualifier detection for GS

2014-07-02 Thread Jordan Justen
Reviewed-by: Jordan Justen On Wed, Jul 2, 2014 at 12:38 AM, Samuel Iglesias Gonsalvez wrote: > This patch fixes the duplicated layout qualifier detection > for geometry shader's layout qualifiers. > > Also it makes the detection code more legible by defining > allowed_duplicates_mask variable. >

[Mesa-dev] [PATCH] glsl: fix duplicated layout qualifier detection for GS

2014-07-02 Thread Samuel Iglesias Gonsalvez
This patch fixes the duplicated layout qualifier detection for geometry shader's layout qualifiers. Also it makes the detection code more legible by defining allowed_duplicates_mask variable. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=80778 Signed-off-by: Samuel Iglesias Gonsalvez -