commit | 7b306ec37a1b98082cbf19b4b307a13e42ffb435 | [log] [tgz] |
---|---|---|
author | Sean O'Brien <seobrien@google.com> | Thu Sep 29 14:14:19 2022 -0700 |
committer | Chromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Sep 30 17:38:05 2022 +0000 |
tree | 54466b1e45bbf7bddfa46ea6b6a4877393d234a0 | |
parent | fea1afd238c5f34dc1a24cd29c4f7766ad38892f [diff] |
vell: ensure fast move events aren't lost Because the touch size resolution on vell is coarse, the gesture library sometimes skipped move events, thinking a finger was leaving. This CL doesn't allow dropping move events if the finger is moving quickly. BUG=b:247569477 TEST=Deploy to vell and test manually. Change-Id: Ic2c7c1d37018ba277aff2bd34f5529778d592e0a Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/xorg-conf/+/3928259 Reviewed-by: Denis Brockus <dbrockus@chromium.org> Commit-Queue: Sean O'Brien <seobrien@chromium.org> Tested-by: Sean O'Brien <seobrien@chromium.org>
This repository contains configuration files that were originally for the X Windowing System (a.k.a. X11 or Xorg). CrOS moved away from using X around 2015, but these files are still used to configure input devices. Thankfully this reduction in scope greatly reduces their effect on life satisfaction.
The syntax is now a subset of Xorg's configuration syntax, and using anything outside of that subset will either cause an error or just be ignored. Specifically, only InputClass
sections are supported. Within those, the following entries are supported:
Identifier
;Match
directives (MatchProduct
, MatchDevicePath
, MatchUSBID
, MatchIsPointer
, MatchIsTouchpad
, and MatchIsTouchscreen
);Driver
, which is ignored; andOption
, which is used to specify gesture properties instead of X11 input device options (though some old X11 options may be hanging around).For more details, see the parsing code in Chromium's GesturePropertyProvider
.