diff options
author | Rob Clark <[email protected]> | 2020-05-14 16:01:29 -0700 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-05-19 16:06:17 +0000 |
commit | c3630c9d29b7bc7dbdf7d914d39782b4d02c5520 (patch) | |
tree | 1e50db880c2baff1df0e08ba41ad804165cd3436 /src/freedreno/ir3/ir3.h | |
parent | 721147a05d47229252dc49460f6de1eec793bfc2 (diff) |
freedreno/ir3/group: report progress
Not iterative, but this will let IR3_PASS() macro know if there are any
changes to print.
Signed-off-by: Rob Clark <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5048>
Diffstat (limited to 'src/freedreno/ir3/ir3.h')
-rw-r--r-- | src/freedreno/ir3/ir3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/freedreno/ir3/ir3.h b/src/freedreno/ir3/ir3.h index a33050956aa..e40cd0b374c 100644 --- a/src/freedreno/ir3/ir3.h +++ b/src/freedreno/ir3/ir3.h @@ -1201,7 +1201,7 @@ bool ir3_cf(struct ir3 *ir); bool ir3_cp(struct ir3 *ir, struct ir3_shader_variant *so); /* group neighbors and insert mov's to resolve conflicts: */ -void ir3_group(struct ir3 *ir); +bool ir3_group(struct ir3 *ir); /* scheduling: */ bool ir3_sched_add_deps(struct ir3 *ir); |