Auto merge of #8163 - mbrubeck:glutin-multitouch, r=glennw

Enable multitouch in Glutin.

This tells Glutin's Android and iOS back-ends to send events for more than one
pointer at a time.

r? @glennw

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8163)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-10-23 06:13:28 -06:00
commit 28f4dd4f48

View file

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