summaryrefslogtreecommitdiffstats
path: root/src/glsl/ast_type.cpp
diff options
context:
space:
mode:
authorTimothy Arceri <timothy.arceri@collabora.com>2016-01-15 11:01:25 +1100
committerTimothy Arceri <timothy.arceri@collabora.com>2016-01-20 08:06:29 +1100
commitc8b8c578d145f90794611602eb66fc7d3f1df033 (patch)
treec0bcad7e0c9b4a7667a5df2fd27d6800b37fb190 /src/glsl/ast_type.cpp
parent866a6bf9f70625517d6d2c17be9523b9f035f1db (diff)
downloadexternal_mesa3d-c8b8c578d145f90794611602eb66fc7d3f1df033.zip
external_mesa3d-c8b8c578d145f90794611602eb66fc7d3f1df033.tar.gz
external_mesa3d-c8b8c578d145f90794611602eb66fc7d3f1df033.tar.bz2
glsl: allow duplicate layout-qualifier-names
This is added by ARB_enhanced_layouts although it doesn't fit into any of the six main changes so we enable this independently. From the ARB_enhanced_layouts spec: "More than one layout qualifier may appear in a single declaration. Additionally, the same layout-qualifier-name can occur multiple times within a layout qualifier or across multiple layout qualifiers in the same declaration" Reviewed-by: Matt Turner <mattst88@gmail.com> Reviewed-by: Chris Forbes <chrisf@ijw.co.nz>
Diffstat (limited to 'src/glsl/ast_type.cpp')
-rw-r--r--src/glsl/ast_type.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/glsl/ast_type.cpp b/src/glsl/ast_type.cpp
index 1f675b2..4e75016 100644
--- a/src/glsl/ast_type.cpp
+++ b/src/glsl/ast_type.cpp
@@ -157,7 +157,8 @@ ast_type_qualifier::merge_qualifier(YYLTYPE *loc,
allowed_duplicates_mask.flags.i |=
stream_layout_mask.flags.i;
- if ((this->flags.i & q.flags.i & ~allowed_duplicates_mask.flags.i) != 0) {
+ if (!state->has_enhanced_layouts() &&
+ (this->flags.i & q.flags.i & ~allowed_duplicates_mask.flags.i) != 0) {
_mesa_glsl_error(loc, state,
"duplicate layout qualifiers used");
return false;