Update to latest glutin, glium and image.
[mandelwow.git] / support / camera.rs
index 69e3bb5388447df98326398edabd3d01f13833e0..b31b9e33c47d79e382e180f9feb5e0f3d8147fd3 100644 (file)
@@ -2,7 +2,7 @@ extern crate glutin;
 
 use cgmath::{Matrix4, Vector4};
 use cgmath::conv::array4x4;
-use glutin::WindowEvent::{KeyboardInput, MouseMoved};
+use glutin::WindowEvent::{KeyboardInput, CursorMoved};
 use glutin::VirtualKeyCode;
 use std::f32;
 use std::f32::consts::PI;
@@ -167,7 +167,7 @@ impl CameraState {
 
     pub fn process_input(&mut self, event: &glutin::WindowEvent) {
         match event {
-            &MouseMoved { position: (x, y), .. }  => {
+            &CursorMoved { position: (x, y), .. }  => {
                 let (x, y) = (x as i32, y as i32);
                 if self.mouse_x == -1 {
                     // Set initial absolute position.