diff options
author | Imanol Fernandez <mortimergoro@gmail.com> | 2017-03-29 15:41:40 +0200 |
---|---|---|
committer | Imanol Fernandez <mortimergoro@gmail.com> | 2017-04-12 15:43:14 +0200 |
commit | 0158b5b2af28a32eccdd36060c533bc33e862776 (patch) | |
tree | f006ef7d984e2c07458e72ac96fd62a4366f3f7c /components/webvr_traits/lib.rs | |
parent | 69eda6a60cece433e91d4bc578e94d8d5dfc9544 (diff) | |
download | servo-0158b5b2af28a32eccdd36060c533bc33e862776.tar.gz servo-0158b5b2af28a32eccdd36060c533bc33e862776.zip |
Implement Gamepad API
Diffstat (limited to 'components/webvr_traits/lib.rs')
-rw-r--r-- | components/webvr_traits/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/components/webvr_traits/lib.rs b/components/webvr_traits/lib.rs index 81aaca9085e..55c3057fcb7 100644 --- a/components/webvr_traits/lib.rs +++ b/components/webvr_traits/lib.rs @@ -16,9 +16,15 @@ 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; |