glsl: Disable ordering checks on most qualifiers for 420pack.

This makes the compiler accept invariant, storage, layout, and
interpolation qualifiers in any order when ARB_shading_language_420pack
is enabled.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Kenneth Graunke 2013-07-15 16:11:00 -07:00
parent 48e3bd33dc
commit 89f75e7e7b
1 changed files with 3 additions and 2 deletions

View File

@ -1369,7 +1369,7 @@ type_qualifier:
"with layout(...).\n");
}
if ($2.flags.q.invariant) {
if (!state->ARB_shading_language_420pack_enable && $2.flags.q.invariant) {
_mesa_glsl_error(&@1, state, "Interpolation qualifiers must come "
"after \"invariant\".\n");
}
@ -1409,7 +1409,8 @@ type_qualifier:
if ($2.has_storage())
_mesa_glsl_error(&@1, state, "Duplicate storage qualifier.\n");
if ($2.flags.q.invariant || $2.has_interpolation() || $2.has_layout()) {
if (!state->ARB_shading_language_420pack_enable &&
($2.flags.q.invariant || $2.has_interpolation() || $2.has_layout())) {
_mesa_glsl_error(&@1, state, "Storage qualifiers must come after "
"invariant, interpolation, and layout qualifiers.\n");
}