Skip to content

Commit

Permalink
desktop: Switch to wgpu 24 and egui git master
Browse files Browse the repository at this point in the history
  • Loading branch information
torokati44 committed Jan 16, 2025
1 parent 601ee06 commit 0cb8ea5
Show file tree
Hide file tree
Showing 17 changed files with 121 additions and 83 deletions.
121 changes: 75 additions & 46 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ version = "0.1.0"
[workspace.dependencies]
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
naga = { version = "23.1.0", features = ["wgsl-out"] }
wgpu = "23.0.1"
egui = "0.30.0"
naga = { version = "24.0.0", features = ["wgsl-out"] }
wgpu = "24.0.0"
egui = { git = "https://github.com/emilk/egui.git", branch = "master" }
clap = { version = "4.5.26", features = ["derive"] }
cpal = "0.15.3"
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ hashbrown = { version = "0.14.5", features = ["raw"] }
scopeguard = "1.2.0"
fluent-templates = "0.13.0"
egui = { workspace = true, optional = true }
egui_extras = { version = "0.30.0", default-features = false, optional = true }
egui_extras = { git = "https://github.com/emilk/egui.git", branch = "master", default-features = false, optional = true }
png = { version = "0.17.16", optional = true }
flv-rs = { path = "../flv" }
async-channel = { workspace = true }
Expand Down
3 changes: 3 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ unknown-git = "deny"
# github.com organizations to allow git sources for
github = [
"ruffle-rs",
# TODO: Remove once a release with https://github.com/emilk/egui/pull/5610
# (the wgpu bump to 24.0.0) in it is out.
"emilk",
]

[advisories]
Expand Down
6 changes: 3 additions & 3 deletions desktop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ workspace = true
clap = { workspace = true }
cpal = { workspace = true }
egui = { workspace = true }
egui_extras = { version = "0.30.0", default-features = false, features = ["image"] }
egui-wgpu = { version = "0.30.0", features = ["winit"] }
egui_extras = { git = "https://github.com/emilk/egui.git", branch = "master", default-features = false, features = ["image"] }
egui-wgpu = { git = "https://github.com/emilk/egui.git", branch = "master", features = ["winit"] }
image = { workspace = true, features = ["png"] }
egui-winit = "0.30.0"
egui-winit = { git = "https://github.com/emilk/egui.git", branch = "master" }
fontdb = "0.23"
ruffle_core = { path = "../core", features = ["audio", "clap", "mp3", "aac", "nellymoser", "default_compatibility_rules", "egui"] }
ruffle_render = { path = "../render", features = ["clap"] }
Expand Down
Loading

0 comments on commit 0cb8ea5

Please sign in to comment.