diff options
author | Ian Romanick <[email protected]> | 2010-09-13 14:25:26 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-09-13 14:25:26 -0700 |
commit | 8f2214f4892acb994d13531d555196bd8f242dad (patch) | |
tree | 6e84998ec3977c1791ba1765660345b61c2b93f9 /src/glsl/ir_optimization.h | |
parent | e79a1bb02a0ce3c265c4a64c117018a9207064c9 (diff) |
glsl2: Add pass to remove redundant jumps
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 726a6ad97dd..b365ed2b235 100644 --- a/src/glsl/ir_optimization.h +++ b/src/glsl/ir_optimization.h @@ -56,3 +56,4 @@ 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); bool lower_noise(exec_list *instructions); +bool optimize_redundant_jumps(exec_list *instructions); |