From 11d2bf3137e4943ccbeba1c4e6296deabab5e884 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Thu, 22 Oct 2015 15:09:15 -0700 Subject: [PATCH] Enable multitouch in Glutin. This tells Glutin's Android and iOS back-ends to send events for more than one pointer at a time. --- ports/glutin/window.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ports/glutin/window.rs b/ports/glutin/window.rs index 9b851384141..2c1b37224a2 100644 --- a/ports/glutin/window.rs +++ b/ports/glutin/window.rs @@ -93,6 +93,7 @@ impl Window { .with_gl(Window::gl_version()) .with_visibility(is_foreground) .with_parent(parent) + .with_multitouch() .build() .unwrap();