glsl: When disabling gl_PerVertex variables, check that mode matches.
authorPaul Berry <stereotype441@gmail.com>
Tue, 15 Oct 2013 21:56:28 +0000 (14:56 -0700)
committerPaul Berry <stereotype441@gmail.com>
Fri, 25 Oct 2013 05:01:30 +0000 (22:01 -0700)
commite8f6f244bb1963c4af81f431865355beef1b9cbb
tree8dda5ca93a5e58a6a7a33772ad920890925078fe
parent719bf3016550a279cf0d399b946d0d0b77329927
glsl: When disabling gl_PerVertex variables, check that mode matches.

In commit 1b4a737 (glsl: Support redeclaration of VS and GS
gl_PerVertex output), I added code to ensure that when an unnamed
gl_PerVertex interface block is redeclared, any ir_variables that
weren't included in the redeclaration are removed from the IR (and the
symbol table).  This ensures that only those variables that were
explicitly redeclared may be used.

However, when I wrote this code, I neglected to match the variable
mode when finding variables to remove.  This meant that redeclaring a
built-in output block might cause the built-in input gl_in to be
accidentally removed.

Fixes piglit test gs-redeclares-pervertex-out-only.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
src/glsl/ast_to_hir.cpp