Merge "Revert "Fix a bug in TouchInteractionService for fixed-display input rotation"" into sc-dev
diff --git a/quickstep/src/com/android/quickstep/TouchInteractionService.java b/quickstep/src/com/android/quickstep/TouchInteractionService.java
index 027dd1c..edc7a3c 100644
--- a/quickstep/src/com/android/quickstep/TouchInteractionService.java
+++ b/quickstep/src/com/android/quickstep/TouchInteractionService.java
@@ -534,13 +534,6 @@
Point sz = new Point();
display.getRealSize(sz);
if (rotation != Surface.ROTATION_0) {
- if ((rotation % 2) != 0) {
- // via display-manager, the display size is unrotated, so "rotate" its size
- // to match the rotation we are transforming the event into.
- final int tmpX = sz.x;
- sz.x = sz.y;
- sz.y = tmpX;
- }
event.transform(InputChannelCompat.createRotationMatrix(rotation, sz.x, sz.y));
}
}