Skip to content

Commit 4add96b

Browse files
committed
Cleanup doc / comments about changed defaults (#4144)
# Objective - Update comment about default audio format - remove doc about msaa in wasm
1 parent de2a47c commit 4add96b

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ tga = ["bevy_internal/tga"]
6969
jpeg = ["bevy_internal/jpeg"]
7070
bmp = ["bevy_internal/bmp"]
7171

72-
# Audio format support (MP3 is enabled by default)
72+
# Audio format support (vorbis is enabled by default)
7373
flac = ["bevy_internal/flac"]
7474
mp3 = ["bevy_internal/mp3"]
7575
vorbis = ["bevy_internal/vorbis"]

crates/bevy_internal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ tga = ["bevy_render/tga"]
2424
jpeg = ["bevy_render/jpeg"]
2525
bmp = ["bevy_render/bmp"]
2626

27-
# Audio format support (MP3 is enabled by default)
27+
# Audio format support (vorbis is enabled by default)
2828
flac = ["bevy_audio/flac"]
2929
mp3 = ["bevy_audio/mp3"]
3030
vorbis = ["bevy_audio/vorbis"]

crates/bevy_render/src/view/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ pub struct Msaa {
6060
/// Note that WGPU currently only supports 1 or 4 samples.
6161
/// Ultimately we plan on supporting whatever is natively supported on a given device.
6262
/// Check out this issue for more info: <https://github.com/gfx-rs/wgpu/issues/1832>
63-
/// It defaults to 1 in wasm - <https://github.com/gfx-rs/wgpu/issues/2149>
6463
pub samples: u32,
6564
}
6665

0 commit comments

Comments
 (0)