diff options
author | Eric Anholt <[email protected]> | 2010-08-13 07:16:38 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-08-13 17:54:47 -0700 |
commit | 8f8cdbfba43550d0b8985fb087961864e4cd92b6 (patch) | |
tree | 3f8fb030267b1c128268e6beb84d4ab98523d81d /src/glsl/Makefile | |
parent | 42cab131dac469475c67ab38a2c29f2f66e6ff49 (diff) |
glsl2: Add a pass to strip out noop swizzles.
With the glsl2-965 branch, the optimization of glsl-algebraic-rcp-rcp
regressed due to noop swizzles hiding information from ir_algebraic.
This cleans up those noop swizzles for us.
Diffstat (limited to 'src/glsl/Makefile')
-rw-r--r-- | src/glsl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/Makefile b/src/glsl/Makefile index 48b7c8f66b5..110228e72a1 100644 --- a/src/glsl/Makefile +++ b/src/glsl/Makefile @@ -55,6 +55,7 @@ CXX_SOURCES = \ ir_import_prototypes.cpp \ ir_mat_op_to_vec.cpp \ ir_mod_to_fract.cpp \ + ir_noop_swizzle.cpp \ ir_print_visitor.cpp \ ir_reader.cpp \ ir_rvalue_visitor.cpp \ |