glsl: Don't generate misleading debug names when packing gs inputs.
authorPaul Berry <stereotype441@gmail.com>
Thu, 31 Oct 2013 00:01:01 +0000 (17:01 -0700)
committerPaul Berry <stereotype441@gmail.com>
Tue, 5 Nov 2013 03:04:29 +0000 (19:04 -0800)
commit86cdff56353a223d3c9c1cd24bc83a1799eaa6d9
tree30cf559195402f2f14aa81754051f3a064c0f8ee
parent749cb8909714fed57b0213f4ad92def3bb24f153
glsl: Don't generate misleading debug names when packing gs inputs.

Previously, when packing geometry shader input varyings like this:

    in float foo[3];
    in float bar[3];

lower_packed_varyings would declare a packed varying like this:

    (declare (shader_in flat) (array ivec4 3) packed:foo[0],bar[0])

That's confusing, since the packed varying acutally stores all three
values of foo and all three values of bar.

This patch causes it to generate the more sensible declaration:

    (declare (shader_in flat) (array ivec4 3) packed:foo,bar)

Note that there should be no functional change for users of geometry
shaders, since the packed name is only used for generating debug
output.  But this should reduce confusion when using INTEL_DEBUG=gs.

Reviewed-by: Eric Anholt <eric@anholt.net>
src/glsl/lower_packed_varyings.cpp