Home
last modified time | relevance | path

Searched refs:offsetTime (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/libs/hwui/
DSkiaInterpolator.cpp154 SkMSec offsetTime = time - startTime; in timeToT() local
156 if (offsetTime >= endTime) { in timeToT()
158 offsetTime = fraction == 0 && fRepeat > 0 in timeToT()
164 offsetTime = offsetTime % (totalTime << mirror); in timeToT()
165 if (offsetTime > totalTime) { // can only be true if fMirror is true in timeToT()
166 offsetTime = (totalTime << 1) - offsetTime; in timeToT()
169 time = offsetTime + startTime; in timeToT()