diff options
author | 2024-12-27 16:59:46 -0800 | |
---|---|---|
committer | 2025-01-06 17:38:56 -0800 | |
commit | 2b5d249b08efd4fbd9e6c28362f33b11a963780b (patch) | |
tree | 3348033bac909129e88f4770a125a3b3036d1537 /libs/gui/WindowInfo.cpp | |
parent | a5bbaad8cb105fa87553c50f97659992db52a780 (diff) |
Remove non-split touch from input code
The behaviour was changed to permanently split since 24Q4. Therefore,
all of the existing complexity around supporting non-split can now be
removed.
Bug: 239934827
Test: TEST=inputflinger_tests; m $TEST && $ANDROID_HOST_OUT/nativetest64/$TEST/$TEST
Flag: NONE removing flag
Change-Id: I8ca23d502a4c23de2dfafbd7653318b8909912ce
Diffstat (limited to 'libs/gui/WindowInfo.cpp')
-rw-r--r-- | libs/gui/WindowInfo.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libs/gui/WindowInfo.cpp b/libs/gui/WindowInfo.cpp index 82d2554340..e1a7ac9b18 100644 --- a/libs/gui/WindowInfo.cpp +++ b/libs/gui/WindowInfo.cpp @@ -73,10 +73,6 @@ void WindowInfo::addTouchableRegion(const Rect& region) { touchableRegion.orSelf(region); } -bool WindowInfo::supportsSplitTouch() const { - return !inputConfig.test(InputConfig::PREVENT_SPLITTING); -} - bool WindowInfo::isSpy() const { return inputConfig.test(InputConfig::SPY); } |