chore: CI fixes

This commit is contained in:
Sébastien Crozet
2024-01-22 21:06:33 +01:00
parent 9b87f06a85
commit bef72df32c
5 changed files with 8 additions and 3 deletions

View File

@@ -262,7 +262,7 @@ impl PhysicsPipeline {
// Intra-island parallelism (that hasnt 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,
)
});