nir/lower_two_sided_color: fixup for new foreach_block()
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:

committed by
Jason Ekstrand

parent
d40fbbc27e
commit
331b9f73a2
@@ -133,9 +133,9 @@ setup_inputs(lower_2side_state *state)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static bool
|
static bool
|
||||||
nir_lower_two_sided_color_block(nir_block *block, void *void_state)
|
nir_lower_two_sided_color_block(nir_block *block,
|
||||||
|
lower_2side_state *state)
|
||||||
{
|
{
|
||||||
lower_2side_state *state = void_state;
|
|
||||||
nir_builder *b = &state->b;
|
nir_builder *b = &state->b;
|
||||||
|
|
||||||
nir_foreach_instr_safe(instr, block) {
|
nir_foreach_instr_safe(instr, block) {
|
||||||
@@ -185,7 +185,9 @@ nir_lower_two_sided_color_impl(nir_function_impl *impl,
|
|||||||
|
|
||||||
nir_builder_init(b, impl);
|
nir_builder_init(b, impl);
|
||||||
|
|
||||||
nir_foreach_block_call(impl, nir_lower_two_sided_color_block, state);
|
nir_foreach_block(block, impl) {
|
||||||
|
nir_lower_two_sided_color_block(block, state);
|
||||||
|
}
|
||||||
|
|
||||||
nir_metadata_preserve(impl, nir_metadata_block_index |
|
nir_metadata_preserve(impl, nir_metadata_block_index |
|
||||||
nir_metadata_dominance);
|
nir_metadata_dominance);
|
||||||
|
Reference in New Issue
Block a user