Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/DisplayHardware/
DHWComposer.cpp1243 nsecs_t next_vsync = mNextFakeVSync; in threadLoop() local
1244 nsecs_t sleep = next_vsync - now; in threadLoop()
1247 sleep = (period - ((now - next_vsync) % period)); in threadLoop()
1248 next_vsync = now + sleep; in threadLoop()
1250 mNextFakeVSync = next_vsync + period; in threadLoop()
1253 spec.tv_sec = next_vsync / 1000000000; in threadLoop()
1254 spec.tv_nsec = next_vsync % 1000000000; in threadLoop()
1262 mHwc.mEventHandler.onVSyncReceived(0, next_vsync); in threadLoop()