diff options
| author | John Reck <jreck@google.com> | 2014-12-19 23:09:47 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-12-19 23:09:49 +0000 |
| commit | f89dac472366c547e535dfafa8df25bd2d031833 (patch) | |
| tree | 9ae912cbee5ce4521eaa2392461c346934065dfc /libs/hwui/renderthread/RenderThread.h | |
| parent | e130d6c14ae2d4a6f703ef452a7e5741d84936a0 (diff) | |
| parent | a733f89c05567c97359169832f41389b939baaad (diff) | |
| download | frameworks_base-f89dac472366c547e535dfafa8df25bd2d031833.zip frameworks_base-f89dac472366c547e535dfafa8df25bd2d031833.tar.gz frameworks_base-f89dac472366c547e535dfafa8df25bd2d031833.tar.bz2 | |
Merge "Tweak RT-animator scheduling" into lmp-mr1-dev
Diffstat (limited to 'libs/hwui/renderthread/RenderThread.h')
| -rw-r--r-- | libs/hwui/renderthread/RenderThread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/hwui/renderthread/RenderThread.h b/libs/hwui/renderthread/RenderThread.h index 4126d02..99c2e15 100644 --- a/libs/hwui/renderthread/RenderThread.h +++ b/libs/hwui/renderthread/RenderThread.h @@ -75,7 +75,7 @@ public: // and will delete them after they are run ANDROID_API void queue(RenderTask* task); ANDROID_API void queueAtFront(RenderTask* task); - void queueDelayed(RenderTask* task, int delayMs); + void queueAt(RenderTask* task, nsecs_t runAtNs); void remove(RenderTask* task); // Mimics android.view.Choreographer @@ -103,7 +103,7 @@ private: void initThreadLocals(); void initializeDisplayEventReceiver(); static int displayEventReceiverCallback(int fd, int events, void* data); - void drainDisplayEventQueue(bool skipCallbacks = false); + void drainDisplayEventQueue(); void dispatchFrameCallbacks(); void requestVsync(); |
