Skip to content

Commit 4b0b972

Browse files
committed
Make interaction API OpenXR-like
Remove support for OpenXR Vulkan extension v1
1 parent 9928e4e commit 4b0b972

File tree

12 files changed

+440
-669
lines changed

12 files changed

+440
-669
lines changed

crates/bevy_app/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ron = { version = "0.6.2", optional = true }
2727

2828
[target.'cfg(target_arch = "wasm32")'.dependencies]
2929
wasm-bindgen = { version = "0.2" }
30-
web-sys = { version = "0.3", features = [ "Window" ] }
30+
web-sys = { version = "=0.3.51", features = [ "Window" ] }
3131

3232
[dev-dependencies]
3333
# bevy

crates/bevy_openxr/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ bevy_xr = { path = "../bevy_xr", version = "0.5.0" }
2424
# other
2525
openxr = { git = "https://github.com/Ralith/openxrs" }
2626
serde = "1"
27-
ash = "0.32.1"
28-
wgpu = { git = "https://github.com/gfx-rs/wgpu" }
29-
wgpu-hal = { git = "https://github.com/gfx-rs/wgpu", features = ["vulkan"] } # vulkan flag used for macos dev. todo remove
27+
ash = "0.33"
28+
wgpu = "0.10"
29+
wgpu-hal = { version = "0.10", features = ["vulkan"] }
3030
thiserror = "1.0"
3131
parking_lot = "0.11"
3232

3333
[target.'cfg(target_os = "android")'.dependencies]
34-
ndk-glue = "0.3.0"
34+
ndk-glue = "0.4.0"

crates/bevy_openxr/src/interaction/bindings.rs

Lines changed: 0 additions & 200 deletions
This file was deleted.

0 commit comments

Comments
 (0)