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,15 +1,12 @@
use vr;
use vr::{AsMatrix4, VR};
use vr::{self, AsMatrix4, VR};
extern crate gfx_device_gl;
extern crate nalgebra as na;
extern crate num_traits;
extern crate piston_window;
use gfx;
use gfx::Device;
use gfx::traits::FactoryExt;
use self::na::{Inverse, ToHomogeneous};
use na::{self, Inverse, ToHomogeneous};
use self::piston_window::{PistonWindow, Window};
pub type ColorFormat = gfx::format::Srgba8;