aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-10-23 06:13:28 -0600
committerbors-servo <metajack+bors@gmail.com>2015-10-23 06:13:28 -0600
commit28f4dd4f4806bfc2496bebcdedc3120731f14da2 (patch)
tree46ce8728998aaa91669acd18164356b1b36d4069
parent51ab0abb7f7663e6113246fd7bc525e5f4f0281b (diff)
parent11d2bf3137e4943ccbeba1c4e6296deabab5e884 (diff)
downloadservo-28f4dd4f4806bfc2496bebcdedc3120731f14da2.tar.gz
servo-28f4dd4f4806bfc2496bebcdedc3120731f14da2.zip
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 -->
-rw-r--r--ports/glutin/window.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/glutin/window.rs b/ports/glutin/window.rs
index 339259f6df6..2c720fa3853 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();