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

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

* commit '3d8c9bdbed0c31143227697bd0d94fd234fe08ad':
  Raise motion event throttle to 60Hz from 35Hz.
This commit is contained in:
Jeff Brown
2010-08-18 17:52:17 -07:00
committed by Android Git Automerger
2 changed files with 2 additions and 5 deletions

View File

@@ -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;
}

View File

@@ -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;