aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorRobert Knight <robert.knight@mendeley.com>2015-06-12 15:32:11 +0100
committerRobert Knight <robert.knight@mendeley.com>2015-06-13 23:19:31 +0100
commitf0bab95c4dc13c1989979c611a4663eb5d590a0d (patch)
tree62fc80f471dae8fbb99f8f791c8d08fb91d7b4d8 /examples
parenta0e29d9410181368eee1e0b6db1bbbf11abf45f8 (diff)
downloadglutin-f0bab95c4dc13c1989979c611a4663eb5d590a0d.tar.gz
glutin-f0bab95c4dc13c1989979c611a4663eb5d590a0d.zip
Express scroll deltas as either line or pixel deltas
Depending on the platform and device, scroll deltas may either be represented as pixel deltas specifying the amount in pixels to scroll or they may be expressed in 'lines' or 'chunks' for low resolution devices (eg. a traditional mouse wheel). Pixel deltas are currently available on OS X. X11 currently supports only integer line deltas, though pixel deltas are available via XInput2. Windows supports fractional line deltas.
Diffstat (limited to 'examples')
-rw-r--r--examples/cursor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cursor.rs b/examples/cursor.rs
index 0dced66..d3beb84 100644
--- a/examples/cursor.rs
+++ b/examples/cursor.rs
@@ -17,7 +17,7 @@ fn main() { println!("This example requires glutin to be compiled with the `wind
#[cfg(feature = "window")]
fn main() {
- let mut window = glutin::Window::new().unwrap();
+ let window = glutin::Window::new().unwrap();
window.set_title("A fantastic window!");
unsafe { window.make_current() };