This change removes the wakeup latency compensation from the software-generated
vsync events. Choreographer can't handle timestamps in the future, so don't
aim for early wake-ups with the expectation that the actual wake-up will be
late.
Bug:
11153576
}
nextEventTime = computeNextEventTimeLocked(now);
- targetTime = nextEventTime - mWakeupLatency;
+ targetTime = nextEventTime;
bool isWakeup = false;
nsecs_t t = computeListenerNextEventTimeLocked(mEventListeners[i],
ref);
- if (t - mWakeupLatency < now) {
+ if (t < now) {
CallbackInvocation ci;
ci.mCallback = mEventListeners[i].mCallback;
ci.mEventTime = t;