Enable multitouch in Glutin.

This tells Glutin's Android and iOS back-ends to send events for more than one
pointer at a time.
This commit is contained in:
Matt Brubeck 2015-10-22 15:09:15 -07:00
parent 12c618450b
commit 11d2bf3137

View file

@ -93,6 +93,7 @@ impl Window {
.with_gl(Window::gl_version())
.with_visibility(is_foreground)
.with_parent(parent)
.with_multitouch()
.build()
.unwrap();