Update webxr

This commit is contained in:
Manish Goregaokar 2019-10-02 19:02:52 -07:00
parent 1062249fd8
commit 4c4cfb9834
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View file

@ -5522,7 +5522,7 @@ dependencies = [
[[package]] [[package]]
name = "webxr" name = "webxr"
version = "0.0.1" version = "0.0.1"
source = "git+https://github.com/servo/webxr#72d85b8254f8ce5d10f91d59ed35cd5969d15ed8" source = "git+https://github.com/servo/webxr#a7e8cae09a5fc3cd3434e644b6e9e2b7697b438c"
dependencies = [ dependencies = [
"bindgen 0.51.1 (registry+https://github.com/rust-lang/crates.io-index)", "bindgen 0.51.1 (registry+https://github.com/rust-lang/crates.io-index)",
"euclid 0.20.1 (registry+https://github.com/rust-lang/crates.io-index)", "euclid 0.20.1 (registry+https://github.com/rust-lang/crates.io-index)",
@ -5540,7 +5540,7 @@ dependencies = [
[[package]] [[package]]
name = "webxr-api" name = "webxr-api"
version = "0.0.1" version = "0.0.1"
source = "git+https://github.com/servo/webxr#72d85b8254f8ce5d10f91d59ed35cd5969d15ed8" source = "git+https://github.com/servo/webxr#a7e8cae09a5fc3cd3434e644b6e9e2b7697b438c"
dependencies = [ dependencies = [
"euclid 0.20.1 (registry+https://github.com/rust-lang/crates.io-index)", "euclid 0.20.1 (registry+https://github.com/rust-lang/crates.io-index)",
"gleam 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)", "gleam 0.6.18 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -72,7 +72,7 @@ impl XRSpace {
.iter() .iter()
.find(|i| i.id == id) .find(|i| i.id == id)
.expect("no input found"); .expect("no input found");
Some(cast_transform(frame.target_ray_origin)) frame.target_ray_origin.map(cast_transform)
} else { } else {
unreachable!() unreachable!()
} }