Skip to content

Commit

Permalink
Make interaction API OpenXR-like
Browse files Browse the repository at this point in the history
Remove support for OpenXR Vulkan extension v1
  • Loading branch information
zmerp committed Oct 3, 2021
1 parent 9928e4e commit 4b0b972
Show file tree
Hide file tree
Showing 12 changed files with 440 additions and 669 deletions.
2 changes: 1 addition & 1 deletion crates/bevy_app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ron = { version = "0.6.2", optional = true }

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

[dev-dependencies]
# bevy
Expand Down
8 changes: 4 additions & 4 deletions crates/bevy_openxr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ bevy_xr = { path = "../bevy_xr", version = "0.5.0" }
# other
openxr = { git = "https://github.com/Ralith/openxrs" }
serde = "1"
ash = "0.32.1"
wgpu = { git = "https://github.com/gfx-rs/wgpu" }
wgpu-hal = { git = "https://github.com/gfx-rs/wgpu", features = ["vulkan"] } # vulkan flag used for macos dev. todo remove
ash = "0.33"
wgpu = "0.10"
wgpu-hal = { version = "0.10", features = ["vulkan"] }
thiserror = "1.0"
parking_lot = "0.11"

[target.'cfg(target_os = "android")'.dependencies]
ndk-glue = "0.3.0"
ndk-glue = "0.4.0"
200 changes: 0 additions & 200 deletions crates/bevy_openxr/src/interaction/bindings.rs

This file was deleted.

Loading

0 comments on commit 4b0b972

Please sign in to comment.