(&mut self, delta_time: f32)
| 800 | #[cfg(feature = "profile_heavy")] |
| 801 | skip_prepare_2d: draw_timing.as_ref().map(|t| t.skip_prepare_2d).unwrap_or(0), |
| 802 | skip_render_3d: draw_timing.as_ref().map(|t| t.skip_render_3d).unwrap_or(0), |
| 803 | #[cfg(feature = "profile_heavy")] |
| 804 | skip_prepare_3d: draw_timing.as_ref().map(|t| t.skip_prepare_3d).unwrap_or(0), |
| 805 | #[cfg(feature = "profile_heavy")] |
| 806 | skip_prepare_particles_3d: draw_timing |
| 807 | .as_ref() |
| 808 | .map(|t| t.skip_prepare_particles_3d) |
| 809 | .unwrap_or(0), |
nothing calls this directly
no test coverage detected