Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 68a15583 authored by Chet Haase's avatar Chet Haase Committed by Android Git Automerger
Browse files

am 41ffab86: Merge "increase the rate at which we dispatch events." into ics-mr1

* commit '41ffab86':
  increase the rate at which we dispatch events.
parents f4db2fe5 41ffab86
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -675,7 +675,13 @@ public class InputManager implements Watchdog.Monitor {
            } catch (NumberFormatException e) {
            }
            if (result < 1) {
                result = 55;
                // This number equates to the refresh rate * 1.5. The rate should be at least
                // equal to the screen refresh rate. We increase the rate by 50% to compensate for
                // the discontinuity between the actual rate that events come in at (they do
                // not necessarily come in constantly and are not handled synchronously).
                // Ideally, we would use Display.getRefreshRate(), but as this does not necessarily
                // return a sensible result, we use '60' as our default assumed refresh rate.
                result = 90;
            }
            return result;
        }