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/ir_optimization.h | |
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/ir_optimization.h')
-rw-r--r-- | src/glsl/ir_optimization.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/ir_optimization.h b/src/glsl/ir_optimization.h index fae583df756..06cb4d22ca8 100644 --- a/src/glsl/ir_optimization.h +++ b/src/glsl/ir_optimization.h @@ -41,6 +41,7 @@ bool do_div_to_mul_rcp(exec_list *instructions); bool do_function_inlining(exec_list *instructions); bool do_if_return(exec_list *instructions); bool do_if_simplification(exec_list *instructions); +bool do_if_to_cond_assign(exec_list *instructions); bool do_mat_op_to_vec(exec_list *instructions); bool do_mod_to_fract(exec_list *instructions); bool do_swizzle_swizzle(exec_list *instructions); |