diff options
author | Jason Ekstrand <[email protected]> | 2014-10-29 14:16:54 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-01-15 07:19:00 -0800 |
commit | dfdf0c46732dd20b5796778dc446fb0a34649f1e (patch) | |
tree | cd27a28342bc486eaea1ad86406227524e1cd251 /src/glsl/nir/nir.h | |
parent | 07556442a7f82d44cbd2e725efd475efcd8a437c (diff) |
nir: Add a foreach_block_reverse function
Reviewed-by: Connor Abbott <[email protected]>
Diffstat (limited to 'src/glsl/nir/nir.h')
-rw-r--r-- | src/glsl/nir/nir.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/glsl/nir/nir.h b/src/glsl/nir/nir.h index 9d059340ee7..2ea7542d313 100644 --- a/src/glsl/nir/nir.h +++ b/src/glsl/nir/nir.h @@ -1274,6 +1274,8 @@ bool nir_foreach_src(nir_instr *instr, nir_foreach_src_cb cb, void *state); typedef bool (*nir_foreach_block_cb)(nir_block *block, void *state); bool nir_foreach_block(nir_function_impl *impl, nir_foreach_block_cb cb, void *state); +bool nir_foreach_block_reverse(nir_function_impl *impl, nir_foreach_block_cb cb, + void *state); void nir_index_local_regs(nir_function_impl *impl); void nir_index_global_regs(nir_shader *shader); |