diff --git a/Cargo.toml b/Cargo.toml index 38cb2a8178..30fcaa9de2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -69,7 +69,7 @@ tga = ["bevy_internal/tga"] jpeg = ["bevy_internal/jpeg"] bmp = ["bevy_internal/bmp"] -# Audio format support (MP3 is enabled by default) +# Audio format support (vorbis is enabled by default) flac = ["bevy_internal/flac"] mp3 = ["bevy_internal/mp3"] vorbis = ["bevy_internal/vorbis"] diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index e69427a799..36642c9bc6 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -24,7 +24,7 @@ tga = ["bevy_render/tga"] jpeg = ["bevy_render/jpeg"] bmp = ["bevy_render/bmp"] -# Audio format support (MP3 is enabled by default) +# Audio format support (vorbis is enabled by default) flac = ["bevy_audio/flac"] mp3 = ["bevy_audio/mp3"] vorbis = ["bevy_audio/vorbis"] diff --git a/crates/bevy_render/src/view/mod.rs b/crates/bevy_render/src/view/mod.rs index 95233083c6..7f31d9458b 100644 --- a/crates/bevy_render/src/view/mod.rs +++ b/crates/bevy_render/src/view/mod.rs @@ -60,7 +60,6 @@ pub struct Msaa { /// Note that WGPU currently only supports 1 or 4 samples. /// Ultimately we plan on supporting whatever is natively supported on a given device. /// Check out this issue for more info: - /// It defaults to 1 in wasm - pub samples: u32, }