diff options
author | Eric Anholt <[email protected]> | 2010-07-30 17:04:49 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-07-31 15:52:21 -0700 |
commit | 784695442c415cf0be882434a25671ecfb635d34 (patch) | |
tree | 8aeab49d863c67b5df5ff9643966790931382b72 /src/glsl/ir_optimization.h | |
parent | d72edc4dddb6dd7908ef0d3f2cec353b028bf6c5 (diff) |
glsl2: Add new tree grafting optimization pass.
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 5dbb025d357..55ec3271936 100644 --- a/src/glsl/ir_optimization.h +++ b/src/glsl/ir_optimization.h @@ -44,5 +44,6 @@ 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); +bool do_tree_grafting(exec_list *instructions); bool do_vec_index_to_cond_assign(exec_list *instructions); bool do_vec_index_to_swizzle(exec_list *instructions); |