Cleanup doc / comments about changed defaults (#4144)

# Objective

- Update comment about default audio format
- remove doc about msaa in wasm
This commit is contained in:
François 2022-03-08 02:11:59 +00:00
parent de2a47c2ba
commit 4add96b1be
3 changed files with 2 additions and 3 deletions

View file

@ -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"]

View file

@ -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"]

View file

@ -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: <https://github.com/gfx-rs/wgpu/issues/1832>
/// It defaults to 1 in wasm - <https://github.com/gfx-rs/wgpu/issues/2149>
pub samples: u32,
}