diff options
| author | Sébastien Crozet <sebcrozet@dimforge.com> | 2024-01-22 21:06:33 +0100 |
|---|---|---|
| committer | Sébastien Crozet <sebcrozet@dimforge.com> | 2024-01-22 21:06:33 +0100 |
| commit | bef72df32c6f5c9275b82b38b387e9295430814a (patch) | |
| tree | d813501a153938d0d25f7792bfd4b05a780da761 /src/pipeline | |
| parent | 9b87f06a856c4d673642e210f8b0986cfdbac3af (diff) | |
| download | rapier-bef72df32c6f5c9275b82b38b387e9295430814a.tar.gz rapier-bef72df32c6f5c9275b82b38b387e9295430814a.tar.bz2 rapier-bef72df32c6f5c9275b82b38b387e9295430814a.zip | |
chore: CI fixes
Diffstat (limited to 'src/pipeline')
| -rw-r--r-- | src/pipeline/physics_pipeline.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pipeline/physics_pipeline.rs b/src/pipeline/physics_pipeline.rs index aa5ed23..5ff78fd 100644 --- a/src/pipeline/physics_pipeline.rs +++ b/src/pipeline/physics_pipeline.rs @@ -262,7 +262,7 @@ impl PhysicsPipeline { // Intra-island parallelism (that hasn’t been ported to the new // solver yet) will be supported in the future. self.counters.solver.velocity_resolution_time.resume(); - rayon::scope(|scope| { + rayon::scope(|_scope| { enable_flush_to_zero!(); solvers @@ -287,9 +287,9 @@ impl PhysicsPipeline { islands, bodies, &mut manifolds[..], - &self.manifold_indices[island_id], + &manifold_indices[island_id], impulse_joints, - &self.joint_constraint_indices[island_id], + &joint_constraint_indices[island_id], multibody_joints, ) }); |
