summaryrefslogtreecommitdiff
path: root/libs/input/PointerController.h
diff options
context:
space:
mode:
author Liana Kazanova (xWF) <lkazanova@google.com> 2024-11-18 19:14:42 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2024-11-18 19:14:42 +0000
commita1d4fe00718abb40cdef39df7d15244e582409f9 (patch)
treefa04de48bf9226cb5bddbff5146b2d9f85fc4379 /libs/input/PointerController.h
parent24c8ba68bdfc5a728db06e3a778b2b4f43bca4e7 (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.h4
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 {