mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
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:
parent
de2a47c2ba
commit
4add96b1be
3 changed files with 2 additions and 3 deletions
|
@ -69,7 +69,7 @@ tga = ["bevy_internal/tga"]
|
||||||
jpeg = ["bevy_internal/jpeg"]
|
jpeg = ["bevy_internal/jpeg"]
|
||||||
bmp = ["bevy_internal/bmp"]
|
bmp = ["bevy_internal/bmp"]
|
||||||
|
|
||||||
# Audio format support (MP3 is enabled by default)
|
# Audio format support (vorbis is enabled by default)
|
||||||
flac = ["bevy_internal/flac"]
|
flac = ["bevy_internal/flac"]
|
||||||
mp3 = ["bevy_internal/mp3"]
|
mp3 = ["bevy_internal/mp3"]
|
||||||
vorbis = ["bevy_internal/vorbis"]
|
vorbis = ["bevy_internal/vorbis"]
|
||||||
|
|
|
@ -24,7 +24,7 @@ tga = ["bevy_render/tga"]
|
||||||
jpeg = ["bevy_render/jpeg"]
|
jpeg = ["bevy_render/jpeg"]
|
||||||
bmp = ["bevy_render/bmp"]
|
bmp = ["bevy_render/bmp"]
|
||||||
|
|
||||||
# Audio format support (MP3 is enabled by default)
|
# Audio format support (vorbis is enabled by default)
|
||||||
flac = ["bevy_audio/flac"]
|
flac = ["bevy_audio/flac"]
|
||||||
mp3 = ["bevy_audio/mp3"]
|
mp3 = ["bevy_audio/mp3"]
|
||||||
vorbis = ["bevy_audio/vorbis"]
|
vorbis = ["bevy_audio/vorbis"]
|
||||||
|
|
|
@ -60,7 +60,6 @@ pub struct Msaa {
|
||||||
/// Note that WGPU currently only supports 1 or 4 samples.
|
/// Note that WGPU currently only supports 1 or 4 samples.
|
||||||
/// Ultimately we plan on supporting whatever is natively supported on a given device.
|
/// 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>
|
/// 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,
|
pub samples: u32,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue