diff options
author | Kenneth Graunke <[email protected]> | 2010-11-18 17:54:07 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-11-19 15:56:28 -0800 |
commit | 63684a9ae7a66f68df1f2c68cd9358e5622122a3 (patch) | |
tree | 40a926458dc68e96bf9ffa9197e0a448b4c9a265 /src/glsl/Makefile | |
parent | b943fb94bf50f20b773dc63558feb6b9480b8a28 (diff) |
glsl: Combine many instruction lowering passes into one.
This should save on the overhead of tree-walking and provide a
convenient place to add more instruction lowering in the future.
Signed-off-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/glsl/Makefile')
-rw-r--r-- | src/glsl/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/glsl/Makefile b/src/glsl/Makefile index ea4d6be5a41..f5aadc347bd 100644 --- a/src/glsl/Makefile +++ b/src/glsl/Makefile @@ -52,14 +52,11 @@ CXX_SOURCES = \ loop_analysis.cpp \ loop_controls.cpp \ loop_unroll.cpp \ - lower_div_to_mul_rcp.cpp \ - lower_explog_to_explog2.cpp \ lower_if_to_cond_assign.cpp \ + lower_instructions.cpp \ lower_jumps.cpp \ lower_mat_op_to_vec.cpp \ - lower_mod_to_fract.cpp \ lower_noise.cpp \ - lower_sub_to_add_neg.cpp \ lower_texture_projection.cpp \ lower_variable_index_to_cond_assign.cpp \ lower_vec_index_to_cond_assign.cpp \ |