diff options
author | Eric Anholt <[email protected]> | 2010-07-19 09:36:43 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-07-19 10:21:38 -0700 |
commit | 29ce44ad2b8d37ea54923f1d1856b44ef26903e5 (patch) | |
tree | 1381ecdb583f49d372e2c040da7b24bf1b6c68e7 /src/glsl/Makefile | |
parent | d16044ad4d6176fec6164f96450a25f76b7677f1 (diff) |
glsl2: Add a pass for converting if statements to conditional assignment.
This will be used on 915 and similar hardware of that generation.
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 a36ff28a4be..c09735dff61 100644 --- a/src/glsl/Makefile +++ b/src/glsl/Makefile @@ -42,6 +42,7 @@ CXX_SOURCES = \ ir_hv_accept.cpp \ ir_if_return.cpp \ ir_if_simplification.cpp \ + ir_if_to_cond_assign.cpp \ ir_mat_op_to_vec.cpp \ ir_mod_to_fract.cpp \ ir_print_visitor.cpp \ |