mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
cargo fix --edition
This commit is contained in:
parent
86f148fb97
commit
45f7199eee
503 changed files with 5038 additions and 5037 deletions
|
@ -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};
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
use ipc_channel::ipc::IpcSender;
|
||||
use msg::constellation_msg::PipelineId;
|
||||
use webvr::*;
|
||||
use crate::webvr::*;
|
||||
|
||||
pub type WebVRResult<T> = Result<T, String>;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue