mirror of
https://github.com/lisk77/comet.git
synced 2025-12-12 09:08:49 +00:00
feat: added comet_sound to cargo toml and added with_audio to the builder pattern
This commit is contained in:
parent
9777c4b6b4
commit
bc9ea50264
3 changed files with 12 additions and 3 deletions
|
|
@ -111,6 +111,11 @@ impl App {
|
|||
self
|
||||
}
|
||||
|
||||
pub fn with_audio(mut self, audio_system: Box<dyn Audio>) -> Self {
|
||||
self.audio = audio_system;
|
||||
self
|
||||
}
|
||||
|
||||
fn load_icon(path: &std::path::Path) -> Option<Icon> {
|
||||
let image = match image::open(path) {
|
||||
Ok(image) => image,
|
||||
|
|
@ -387,8 +392,7 @@ impl App {
|
|||
match renderer.render() {
|
||||
Ok(_) => {}
|
||||
Err(
|
||||
wgpu::SurfaceError::Lost
|
||||
| wgpu::SurfaceError::Outdated,
|
||||
wgpu::SurfaceError::Lost | wgpu::SurfaceError::Outdated,
|
||||
) => {
|
||||
let size = renderer.size();
|
||||
renderer.resize(size);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue