diff options
author | 2024-11-18 19:14:42 +0000 | |
---|---|---|
committer | 2024-11-18 19:14:42 +0000 | |
commit | a1d4fe00718abb40cdef39df7d15244e582409f9 (patch) | |
tree | fa04de48bf9226cb5bddbff5146b2d9f85fc4379 /libs/input/PointerController.h | |
parent | 24c8ba68bdfc5a728db06e3a778b2b4f43bca4e7 (diff) |
Revert "Check if cursor has moved out of viewport bounds in Curs..."
Revert submission 30111126-cd-cursor
Reason for revert: DroidMonitor: Potential culprit for http://b/379706345 - verifying through ABTD before revert submission. This is part of the standard investigation process, and does not mean your CL will be reverted.
Reverted changes: /q/submissionid:30111126-cd-cursor
Change-Id: Ibff6c02be1359729802d4c85fa8dc0fdb4c75492
Diffstat (limited to 'libs/input/PointerController.h')
-rw-r--r-- | libs/input/PointerController.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/input/PointerController.h b/libs/input/PointerController.h index 69bef546b788..ee8d1211341f 100644 --- a/libs/input/PointerController.h +++ b/libs/input/PointerController.h @@ -51,7 +51,7 @@ public: ~PointerController() override; - vec2 move(float deltaX, float deltaY) override; + void move(float deltaX, float deltaY) override; void setPosition(float x, float y) override; FloatPoint getPosition() const override; ui::LogicalDisplayId getDisplayId() const override; @@ -165,7 +165,7 @@ public: ~TouchPointerController() override; - vec2 move(float, float) override { + void move(float, float) override { LOG_ALWAYS_FATAL("Should not be called"); } void setPosition(float, float) override { |