aboutsummaryrefslogtreecommitdiffstats
path: root/components/webvr_traits/lib.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2018-11-01 23:45:06 +0100
committerSimon Sapin <simon.sapin@exyr.org>2018-11-06 15:26:02 +0100
commit45f7199eee82c66637ec68287eafa40a651001c4 (patch)
tree8c0802f4ac7b89c2ce4d73063c8f65b9ee5face9 /components/webvr_traits/lib.rs
parent86f148fb97601413c0d983f21b760d973ade7a75 (diff)
downloadservo-45f7199eee82c66637ec68287eafa40a651001c4.tar.gz
servo-45f7199eee82c66637ec68287eafa40a651001c4.zip
`cargo fix --edition`
Diffstat (limited to 'components/webvr_traits/lib.rs')
-rw-r--r--components/webvr_traits/lib.rs36
1 files changed, 18 insertions, 18 deletions
diff --git a/components/webvr_traits/lib.rs b/components/webvr_traits/lib.rs
index baf4b20943e..7478a1dbcb8 100644
--- a/components/webvr_traits/lib.rs
+++ b/components/webvr_traits/lib.rs
@@ -12,21 +12,21 @@ pub extern crate rust_webvr_api as webvr;
mod webvr_traits;
-pub use webvr::VRDisplayData as WebVRDisplayData;
-pub use webvr::VRDisplayCapabilities as WebVRDisplayCapabilities;
-pub use webvr::VRDisplayEvent as WebVRDisplayEvent;
-pub use webvr::VRDisplayEventReason as WebVRDisplayEventReason;
-pub use webvr::VREvent as WebVREvent;
-pub use webvr::VREye as WebVREye;
-pub use webvr::VREyeParameters as WebVREyeParameters;
-pub use webvr::VRFieldOfView as WebVRFieldOfView;
-pub use webvr::VRGamepadButton as WebVRGamepadButton;
-pub use webvr::VRGamepadData as WebVRGamepadData;
-pub use webvr::VRGamepadEvent as WebVRGamepadEvent;
-pub use webvr::VRGamepadHand as WebVRGamepadHand;
-pub use webvr::VRGamepadState as WebVRGamepadState;
-pub use webvr::VRFrameData as WebVRFrameData;
-pub use webvr::VRLayer as WebVRLayer;
-pub use webvr::VRPose as WebVRPose;
-pub use webvr::VRStageParameters as WebVRStageParameters;
-pub use webvr_traits::{WebVRMsg, WebVRResult};
+pub use crate::webvr::VRDisplayData as WebVRDisplayData;
+pub use crate::webvr::VRDisplayCapabilities as WebVRDisplayCapabilities;
+pub use crate::webvr::VRDisplayEvent as WebVRDisplayEvent;
+pub use crate::webvr::VRDisplayEventReason as WebVRDisplayEventReason;
+pub use crate::webvr::VREvent as WebVREvent;
+pub use crate::webvr::VREye as WebVREye;
+pub use crate::webvr::VREyeParameters as WebVREyeParameters;
+pub use crate::webvr::VRFieldOfView as WebVRFieldOfView;
+pub use crate::webvr::VRGamepadButton as WebVRGamepadButton;
+pub use crate::webvr::VRGamepadData as WebVRGamepadData;
+pub use crate::webvr::VRGamepadEvent as WebVRGamepadEvent;
+pub use crate::webvr::VRGamepadHand as WebVRGamepadHand;
+pub use crate::webvr::VRGamepadState as WebVRGamepadState;
+pub use crate::webvr::VRFrameData as WebVRFrameData;
+pub use crate::webvr::VRLayer as WebVRLayer;
+pub use crate::webvr::VRPose as WebVRPose;
+pub use crate::webvr::VRStageParameters as WebVRStageParameters;
+pub use crate::webvr_traits::{WebVRMsg, WebVRResult};