Bevy version
main#cf70f532
Relevant system information
Windows 11, Chrome
What you did
Even a basically empty application has severely degraded performance on main on WebGPU. The following:
use bevy::prelude::*;
fn main() {
App::new()
.add_plugins((DefaultPlugins,))
.add_systems(Startup, (setup,))
.run();
}
fn setup(mut commands: Commands) {
commands.spawn((Camera3dBundle { ..default() },));
}
Results in a profile that looks like this:
That prepare_windows system is one of the culprits but generally speaking just everything is taking ages.
If I instead build against the 0.12.1 release on crates.io, I get a clean profile:
Something has clearly gone awry.
Bevy version
main#cf70f532Relevant system information
Windows 11, Chrome
What you did
Even a basically empty application has severely degraded performance on
mainon WebGPU. The following:Results in a profile that looks like this:
That
prepare_windowssystem is one of the culprits but generally speaking just everything is taking ages.If I instead build against the
0.12.1release on crates.io, I get a clean profile:Something has clearly gone awry.