consolidate imports

This commit is contained in:
2016-10-26 22:52:42 -07:00
parent f6b0068ec2
commit 9db44c212c
7 changed files with 22 additions and 34 deletions

View File

@@ -1,19 +1,17 @@
extern crate gfx;
extern crate gfx_device_gl;
extern crate nalgebra as na;
extern crate num_traits;
extern crate openvr as vr;
extern crate openvr_sys;
pub use self::vr::Eye;
pub use self::vr::common::Size;
pub use self::vr::tracking::{TrackedDeviceClass, TrackedDevicePoses};
pub use self::openvr_sys::VRControllerState_t;
use gfx::{self, tex, Factory, Typed};
use na::{self, Inverse};
use num_traits::identities::Zero;
use num_traits::identities::One;
use self::gfx::{tex, Factory, Typed};
use self::gfx_device_gl::Resources as GLResources;
use self::na::Inverse;
use self::num_traits::identities::Zero;
use self::num_traits::identities::One;
use self::openvr_sys::{VREvent_Controller_t, VREvent_t};
pub struct VR {