bevy/crates/bevy_render/src/render_phase
TimJentzsch 694c980c82 Fix clippy::iter_with_drain (#6485)
# Objective

Fixes #6483.

- Fix the [`clippy::iter_with_drain`](https://rust-lang.github.io/rust-clippy/master/index.html#iter_with_drain) warnings
- From the docs: "`.into_iter()` is simpler with better performance"

## Solution

- Replace `.drain(..)` for `Vec` with `.into_iter()`
2022-11-06 01:42:15 +00:00
..
draw_state.rs Add multi draw indirect draw calls (#6392) 2022-10-28 22:43:16 +00:00
draw.rs Exclusive Systems Now Implement System. Flexible Exclusive System Params (#6083) 2022-09-26 23:57:07 +00:00
mod.rs Fix clippy::iter_with_drain (#6485) 2022-11-06 01:42:15 +00:00