Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix double indirection when applying command queues (#11822)
# Objective When applying a command, we currently use double indirection for the world reference `&mut Option<&mut World>`. Since this is used across a `fn` pointer boundary, this can't get optimized away. ## Solution Reborrow the world reference and pass `Option<&mut World>` instead.
- Loading branch information