commit | fea1afd238c5f34dc1a24cd29c4f7766ad38892f | [log] [tgz] |
---|---|---|
author | Sean O'Brien <seobrien@google.com> | Thu Sep 29 14:05:54 2022 -0700 |
committer | Chromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Sep 30 17:38:04 2022 +0000 |
tree | b3f98dab35e9fb8fd425427870b4dd1bad6f5be0 | |
parent | b669201f1c80de9fb04fe482012dee17bb362ad5 [diff] |
redrix: ensure fast move events aren't lost Because the touch size resolution on redrix 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 redrix and test manually. Add regression test. Change-Id: I2b2708b2268c06523c27adbe031ab8220cf402af Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/xorg-conf/+/3928258 Tested-by: Sean O'Brien <seobrien@chromium.org> Reviewed-by: Denis Brockus <dbrockus@chromium.org> Commit-Queue: 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
.