HomeSort by relevance Sort by last modified time
    Searched refs:m_currentVelocity (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/
ScrollAnimatorWin.cpp 56 , m_currentVelocity(0)
188 m_horizontalData.m_currentVelocity = 0;
193 m_verticalData.m_currentVelocity = 0;
247 double lastScrollInterval = data->m_currentVelocity ? (WTF::currentTime() - data->m_lastAnimationTime) : animationTimerDelay;
252 if (data->m_currentVelocity < data->m_desiredVelocity) {
259 float potentialNewVelocity = data->m_currentVelocity + potentialVelocityChange;
265 float actualVelocityChange = data->m_desiredVelocity - data->m_currentVelocity;
270 distanceTraveled = ((data->m_currentVelocity + (actualVelocityChange / 2)) * accelerationInterval);
274 data->m_currentVelocity = data->m_desiredVelocity;
277 distanceTraveled = (data->m_currentVelocity + (potentialVelocityChange / 2)) * lastScrollInterval
    [all...]
ScrollAnimatorWin.h 55 float m_currentVelocity;

Completed in 23 milliseconds