aboutsummaryrefslogtreecommitdiff
path: root/src/pipeline
diff options
context:
space:
mode:
authorSébastien Crozet <sebcrozet@dimforge.com>2024-01-22 21:06:33 +0100
committerSébastien Crozet <sebcrozet@dimforge.com>2024-01-22 21:06:33 +0100
commitbef72df32c6f5c9275b82b38b387e9295430814a (patch)
treed813501a153938d0d25f7792bfd4b05a780da761 /src/pipeline
parent9b87f06a856c4d673642e210f8b0986cfdbac3af (diff)
downloadrapier-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.rs6
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,
)
});