diff options
author | Vincent Lejeune <[email protected]> | 2012-01-03 02:08:32 -0800 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2012-01-06 13:36:44 +0000 |
commit | 6d4b35c03619148cde89bc5eedaac3288001edd3 (patch) | |
tree | 785f5c396309de1bc73617165851191909ec658c /src/glsl/Makefile.sources | |
parent | 293a3916bd0dfa4fb8850e58f81743bfab0f89dc (diff) |
glsl: Add a lowering pass to remove reads of shader output variables.
This is similar to Gallium's existing glsl_to_tgsi::remove_output_read
lowering pass, but done entirely inside the GLSL compiler.
Signed-off-by: Vincent Lejeune <[email protected]>
Signed-off-by: Kenneth Graunke <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/glsl/Makefile.sources')
-rw-r--r-- | src/glsl/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/Makefile.sources b/src/glsl/Makefile.sources index c65bfe4fff6..5e80af297c0 100644 --- a/src/glsl/Makefile.sources +++ b/src/glsl/Makefile.sources @@ -60,6 +60,7 @@ LIBGLSL_CXX_SOURCES := \ lower_vec_index_to_cond_assign.cpp \ lower_vec_index_to_swizzle.cpp \ lower_vector.cpp \ + lower_output_reads.cpp \ opt_algebraic.cpp \ opt_constant_folding.cpp \ opt_constant_propagation.cpp \ |