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

Commit 36beeca4 authored by Jeff Brown's avatar Jeff Brown Committed by Android Git Automerger
Browse files

am 3d8c9bdb: Raise motion event throttle to 60Hz from 35Hz.

Merge commit '3d8c9bdb' into gingerbread-plus-aosp

* commit '3d8c9bdb':
  Raise motion event throttle to 60Hz from 35Hz.
parents d25f0aea 3d8c9bdb
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -48,9 +48,6 @@ import java.util.ArrayList;

/*
 * Wraps the C++ InputManager and provides its callbacks.
 * 
 * XXX Tempted to promote this to a first-class service, ie. InputManagerService, to
 *     improve separation of concerns with respect to the window manager.
 */
public class InputManager {
    static final String TAG = "InputManager";
@@ -517,7 +514,7 @@ public class InputManager {
            } catch (NumberFormatException e) {
            }
            if (result < 1) {
                result = 35;
                result = 60;
            }
            return result;
        }
+1 −1
Original line number Diff line number Diff line
@@ -934,7 +934,7 @@ int32_t NativeInputManager::getMaxEventsPerSecond() {
        jint result = env->CallIntMethod(mCallbacksObj,
                gCallbacksClassInfo.getMaxEventsPerSecond);
        if (checkAndClearExceptionFromCallback(env, "getMaxEventsPerSecond")) {
            result = 35;
            result = 60;
        }

        mMaxEventsPerSecond = result;