Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/Scheduler/
DVSyncPredictor.h99 VsyncTimeline(TimePoint knownVsync, Period idealPeriod, std::optional<Fps> renderRateOpt);
112 std::optional<VsyncSequence> makeVsyncSequence(TimePoint knownVsync);
DVSyncPredictor.cpp624 auto VSyncPredictor::VsyncTimeline::makeVsyncSequence(TimePoint knownVsync) in makeVsyncSequence() argument
626 if (knownVsync.ns() == 0) return std::nullopt; in makeVsyncSequence()
627 return std::make_optional<VsyncSequence>({knownVsync.ns(), 0}); in makeVsyncSequence()
630 VSyncPredictor::VsyncTimeline::VsyncTimeline(TimePoint knownVsync, Period idealPeriod, in VsyncTimeline() argument
634 mLastVsyncSequence(makeVsyncSequence(knownVsync)) {} in VsyncTimeline()