John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 17 | #include "RenderThread.h" |
| 18 | |
Chris Craik | 65fe5ee | 2015-01-26 18:06:29 -0800 | [diff] [blame] | 19 | #include "../renderstate/RenderState.h" |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 20 | #include "CanvasContext.h" |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 21 | #include "EglManager.h" |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 22 | #include "RenderProxy.h" |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 23 | |
Chris Craik | 65fe5ee | 2015-01-26 18:06:29 -0800 | [diff] [blame] | 24 | #include <gui/DisplayEventReceiver.h> |
John Reck | b36016c | 2015-03-11 08:50:53 -0700 | [diff] [blame] | 25 | #include <gui/ISurfaceComposer.h> |
| 26 | #include <gui/SurfaceComposerClient.h> |
Chris Craik | 65fe5ee | 2015-01-26 18:06:29 -0800 | [diff] [blame] | 27 | #include <sys/resource.h> |
| 28 | #include <utils/Log.h> |
| 29 | |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 30 | namespace android { |
| 31 | using namespace uirenderer::renderthread; |
| 32 | ANDROID_SINGLETON_STATIC_INSTANCE(RenderThread); |
| 33 | |
| 34 | namespace uirenderer { |
| 35 | namespace renderthread { |
| 36 | |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 37 | // Number of events to read at a time from the DisplayEventReceiver pipe. |
| 38 | // The value should be large enough that we can quickly drain the pipe |
| 39 | // using just a few large reads. |
| 40 | static const size_t EVENT_BUFFER_SIZE = 100; |
| 41 | |
| 42 | // Slight delay to give the UI time to push us a new frame before we replay |
John Reck | a733f89 | 2014-12-19 11:37:21 -0800 | [diff] [blame] | 43 | static const nsecs_t DISPATCH_FRAME_CALLBACKS_DELAY = milliseconds_to_nanoseconds(4); |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 44 | |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 45 | TaskQueue::TaskQueue() : mHead(nullptr), mTail(nullptr) {} |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 46 | |
| 47 | RenderTask* TaskQueue::next() { |
| 48 | RenderTask* ret = mHead; |
| 49 | if (ret) { |
| 50 | mHead = ret->mNext; |
| 51 | if (!mHead) { |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 52 | mTail = nullptr; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 53 | } |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 54 | ret->mNext = nullptr; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 55 | } |
| 56 | return ret; |
| 57 | } |
| 58 | |
| 59 | RenderTask* TaskQueue::peek() { |
| 60 | return mHead; |
| 61 | } |
| 62 | |
| 63 | void TaskQueue::queue(RenderTask* task) { |
| 64 | // Since the RenderTask itself forms the linked list it is not allowed |
| 65 | // to have the same task queued twice |
| 66 | LOG_ALWAYS_FATAL_IF(task->mNext || mTail == task, "Task is already in the queue!"); |
| 67 | if (mTail) { |
| 68 | // Fast path if we can just append |
| 69 | if (mTail->mRunAt <= task->mRunAt) { |
| 70 | mTail->mNext = task; |
| 71 | mTail = task; |
| 72 | } else { |
| 73 | // Need to find the proper insertion point |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 74 | RenderTask* previous = nullptr; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 75 | RenderTask* next = mHead; |
| 76 | while (next && next->mRunAt <= task->mRunAt) { |
| 77 | previous = next; |
| 78 | next = next->mNext; |
| 79 | } |
| 80 | if (!previous) { |
| 81 | task->mNext = mHead; |
| 82 | mHead = task; |
| 83 | } else { |
| 84 | previous->mNext = task; |
| 85 | if (next) { |
| 86 | task->mNext = next; |
| 87 | } else { |
| 88 | mTail = task; |
| 89 | } |
| 90 | } |
| 91 | } |
| 92 | } else { |
| 93 | mTail = mHead = task; |
| 94 | } |
| 95 | } |
| 96 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 97 | void TaskQueue::queueAtFront(RenderTask* task) { |
| 98 | if (mTail) { |
| 99 | task->mNext = mHead; |
| 100 | mHead = task; |
| 101 | } else { |
| 102 | mTail = mHead = task; |
| 103 | } |
| 104 | } |
| 105 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 106 | void TaskQueue::remove(RenderTask* task) { |
| 107 | // TaskQueue is strict here to enforce that users are keeping track of |
| 108 | // their RenderTasks due to how their memory is managed |
| 109 | LOG_ALWAYS_FATAL_IF(!task->mNext && mTail != task, |
| 110 | "Cannot remove a task that isn't in the queue!"); |
| 111 | |
| 112 | // If task is the head we can just call next() to pop it off |
| 113 | // Otherwise we need to scan through to find the task before it |
| 114 | if (peek() == task) { |
| 115 | next(); |
| 116 | } else { |
| 117 | RenderTask* previous = mHead; |
| 118 | while (previous->mNext != task) { |
| 119 | previous = previous->mNext; |
| 120 | } |
| 121 | previous->mNext = task->mNext; |
| 122 | if (mTail == task) { |
| 123 | mTail = previous; |
| 124 | } |
| 125 | } |
| 126 | } |
| 127 | |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 128 | class DispatchFrameCallbacks : public RenderTask { |
| 129 | private: |
| 130 | RenderThread* mRenderThread; |
| 131 | public: |
| 132 | DispatchFrameCallbacks(RenderThread* rt) : mRenderThread(rt) {} |
| 133 | |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 134 | virtual void run() override { |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 135 | mRenderThread->dispatchFrameCallbacks(); |
| 136 | } |
| 137 | }; |
| 138 | |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 139 | RenderThread::RenderThread() : Thread(true), Singleton<RenderThread>() |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 140 | , mNextWakeup(LLONG_MAX) |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 141 | , mDisplayEventReceiver(nullptr) |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 142 | , mVsyncRequested(false) |
| 143 | , mFrameCallbackTaskPending(false) |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 144 | , mFrameCallbackTask(nullptr) |
| 145 | , mRenderState(nullptr) |
| 146 | , mEglManager(nullptr) { |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 147 | mFrameCallbackTask = new DispatchFrameCallbacks(this); |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 148 | mLooper = new Looper(false); |
| 149 | run("RenderThread"); |
| 150 | } |
| 151 | |
| 152 | RenderThread::~RenderThread() { |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 153 | LOG_ALWAYS_FATAL("Can't destroy the render thread"); |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 154 | } |
| 155 | |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 156 | void RenderThread::initializeDisplayEventReceiver() { |
| 157 | LOG_ALWAYS_FATAL_IF(mDisplayEventReceiver, "Initializing a second DisplayEventReceiver?"); |
| 158 | mDisplayEventReceiver = new DisplayEventReceiver(); |
| 159 | status_t status = mDisplayEventReceiver->initCheck(); |
| 160 | LOG_ALWAYS_FATAL_IF(status != NO_ERROR, "Initialization of DisplayEventReceiver " |
| 161 | "failed with status: %d", status); |
| 162 | |
| 163 | // Register the FD |
| 164 | mLooper->addFd(mDisplayEventReceiver->getFd(), 0, |
| 165 | Looper::EVENT_INPUT, RenderThread::displayEventReceiverCallback, this); |
| 166 | } |
| 167 | |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 168 | void RenderThread::initThreadLocals() { |
John Reck | b36016c | 2015-03-11 08:50:53 -0700 | [diff] [blame] | 169 | sp<IBinder> dtoken(SurfaceComposerClient::getBuiltInDisplay( |
| 170 | ISurfaceComposer::eDisplayIdMain)); |
| 171 | status_t status = SurfaceComposerClient::getDisplayInfo(dtoken, &mDisplayInfo); |
| 172 | LOG_ALWAYS_FATAL_IF(status, "Failed to get display info\n"); |
| 173 | nsecs_t frameIntervalNanos = static_cast<nsecs_t>(1000000000 / mDisplayInfo.fps); |
| 174 | mTimeLord.setFrameInterval(frameIntervalNanos); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 175 | initializeDisplayEventReceiver(); |
| 176 | mEglManager = new EglManager(*this); |
John Reck | 0e89e2b | 2014-10-31 14:49:06 -0700 | [diff] [blame] | 177 | mRenderState = new RenderState(*this); |
John Reck | b36016c | 2015-03-11 08:50:53 -0700 | [diff] [blame] | 178 | mJankTracker = new JankTracker(frameIntervalNanos); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 179 | } |
| 180 | |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 181 | int RenderThread::displayEventReceiverCallback(int fd, int events, void* data) { |
| 182 | if (events & (Looper::EVENT_ERROR | Looper::EVENT_HANGUP)) { |
| 183 | ALOGE("Display event receiver pipe was closed or an error occurred. " |
| 184 | "events=0x%x", events); |
| 185 | return 0; // remove the callback |
| 186 | } |
| 187 | |
| 188 | if (!(events & Looper::EVENT_INPUT)) { |
| 189 | ALOGW("Received spurious callback for unhandled poll event. " |
| 190 | "events=0x%x", events); |
| 191 | return 1; // keep the callback |
| 192 | } |
| 193 | |
| 194 | reinterpret_cast<RenderThread*>(data)->drainDisplayEventQueue(); |
| 195 | |
| 196 | return 1; // keep the callback |
| 197 | } |
| 198 | |
| 199 | static nsecs_t latestVsyncEvent(DisplayEventReceiver* receiver) { |
| 200 | DisplayEventReceiver::Event buf[EVENT_BUFFER_SIZE]; |
| 201 | nsecs_t latest = 0; |
| 202 | ssize_t n; |
| 203 | while ((n = receiver->getEvents(buf, EVENT_BUFFER_SIZE)) > 0) { |
| 204 | for (ssize_t i = 0; i < n; i++) { |
| 205 | const DisplayEventReceiver::Event& ev = buf[i]; |
| 206 | switch (ev.header.type) { |
| 207 | case DisplayEventReceiver::DISPLAY_EVENT_VSYNC: |
| 208 | latest = ev.header.timestamp; |
| 209 | break; |
| 210 | } |
| 211 | } |
| 212 | } |
| 213 | if (n < 0) { |
| 214 | ALOGW("Failed to get events from display event receiver, status=%d", status_t(n)); |
| 215 | } |
| 216 | return latest; |
| 217 | } |
| 218 | |
John Reck | a733f89 | 2014-12-19 11:37:21 -0800 | [diff] [blame] | 219 | void RenderThread::drainDisplayEventQueue() { |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 220 | ATRACE_CALL(); |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 221 | nsecs_t vsyncEvent = latestVsyncEvent(mDisplayEventReceiver); |
| 222 | if (vsyncEvent > 0) { |
| 223 | mVsyncRequested = false; |
John Reck | a733f89 | 2014-12-19 11:37:21 -0800 | [diff] [blame] | 224 | if (mTimeLord.vsyncReceived(vsyncEvent) && !mFrameCallbackTaskPending) { |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 225 | ATRACE_NAME("queue mFrameCallbackTask"); |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 226 | mFrameCallbackTaskPending = true; |
John Reck | a733f89 | 2014-12-19 11:37:21 -0800 | [diff] [blame] | 227 | nsecs_t runAt = (vsyncEvent + DISPATCH_FRAME_CALLBACKS_DELAY); |
| 228 | queueAt(mFrameCallbackTask, runAt); |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 229 | } |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | void RenderThread::dispatchFrameCallbacks() { |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 234 | ATRACE_CALL(); |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 235 | mFrameCallbackTaskPending = false; |
| 236 | |
| 237 | std::set<IFrameCallback*> callbacks; |
| 238 | mFrameCallbacks.swap(callbacks); |
| 239 | |
John Reck | a733f89 | 2014-12-19 11:37:21 -0800 | [diff] [blame] | 240 | if (callbacks.size()) { |
| 241 | // Assume one of them will probably animate again so preemptively |
| 242 | // request the next vsync in case it occurs mid-frame |
| 243 | requestVsync(); |
| 244 | for (std::set<IFrameCallback*>::iterator it = callbacks.begin(); it != callbacks.end(); it++) { |
| 245 | (*it)->doFrame(); |
| 246 | } |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 247 | } |
| 248 | } |
| 249 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 250 | void RenderThread::requestVsync() { |
| 251 | if (!mVsyncRequested) { |
| 252 | mVsyncRequested = true; |
| 253 | status_t status = mDisplayEventReceiver->requestNextVsync(); |
| 254 | LOG_ALWAYS_FATAL_IF(status != NO_ERROR, |
| 255 | "requestNextVsync failed with status: %d", status); |
| 256 | } |
| 257 | } |
| 258 | |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 259 | bool RenderThread::threadLoop() { |
John Reck | 21be43e | 2014-08-14 10:25:16 -0700 | [diff] [blame] | 260 | setpriority(PRIO_PROCESS, 0, PRIORITY_DISPLAY); |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 261 | initThreadLocals(); |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 262 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 263 | int timeoutMillis = -1; |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 264 | for (;;) { |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 265 | int result = mLooper->pollOnce(timeoutMillis); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 266 | LOG_ALWAYS_FATAL_IF(result == Looper::POLL_ERROR, |
| 267 | "RenderThread Looper POLL_ERROR!"); |
| 268 | |
| 269 | nsecs_t nextWakeup; |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 270 | // Process our queue, if we have anything |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 271 | while (RenderTask* task = nextTask(&nextWakeup)) { |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 272 | task->run(); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 273 | // task may have deleted itself, do not reference it again |
| 274 | } |
| 275 | if (nextWakeup == LLONG_MAX) { |
| 276 | timeoutMillis = -1; |
| 277 | } else { |
John Reck | a6260b8 | 2014-01-29 18:31:51 -0800 | [diff] [blame] | 278 | nsecs_t timeoutNanos = nextWakeup - systemTime(SYSTEM_TIME_MONOTONIC); |
| 279 | timeoutMillis = nanoseconds_to_milliseconds(timeoutNanos); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 280 | if (timeoutMillis < 0) { |
| 281 | timeoutMillis = 0; |
| 282 | } |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 283 | } |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 284 | |
| 285 | if (mPendingRegistrationFrameCallbacks.size() && !mFrameCallbackTaskPending) { |
John Reck | a733f89 | 2014-12-19 11:37:21 -0800 | [diff] [blame] | 286 | drainDisplayEventQueue(); |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 287 | mFrameCallbacks.insert( |
| 288 | mPendingRegistrationFrameCallbacks.begin(), mPendingRegistrationFrameCallbacks.end()); |
| 289 | mPendingRegistrationFrameCallbacks.clear(); |
| 290 | requestVsync(); |
| 291 | } |
John Reck | a22c9b2 | 2015-01-14 10:40:15 -0800 | [diff] [blame] | 292 | |
| 293 | if (!mFrameCallbackTaskPending && !mVsyncRequested && mFrameCallbacks.size()) { |
| 294 | // TODO: Clean this up. This is working around an issue where a combination |
| 295 | // of bad timing and slow drawing can result in dropping a stale vsync |
| 296 | // on the floor (correct!) but fails to schedule to listen for the |
| 297 | // next vsync (oops), so none of the callbacks are run. |
| 298 | requestVsync(); |
| 299 | } |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | return false; |
| 303 | } |
| 304 | |
| 305 | void RenderThread::queue(RenderTask* task) { |
| 306 | AutoMutex _lock(mLock); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 307 | mQueue.queue(task); |
| 308 | if (mNextWakeup && task->mRunAt < mNextWakeup) { |
| 309 | mNextWakeup = 0; |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 310 | mLooper->wake(); |
| 311 | } |
| 312 | } |
| 313 | |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 314 | void RenderThread::queueAtFront(RenderTask* task) { |
| 315 | AutoMutex _lock(mLock); |
| 316 | mQueue.queueAtFront(task); |
| 317 | mLooper->wake(); |
| 318 | } |
| 319 | |
John Reck | a733f89 | 2014-12-19 11:37:21 -0800 | [diff] [blame] | 320 | void RenderThread::queueAt(RenderTask* task, nsecs_t runAtNs) { |
| 321 | task->mRunAt = runAtNs; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 322 | queue(task); |
| 323 | } |
| 324 | |
| 325 | void RenderThread::remove(RenderTask* task) { |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 326 | AutoMutex _lock(mLock); |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 327 | mQueue.remove(task); |
| 328 | } |
| 329 | |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 330 | void RenderThread::postFrameCallback(IFrameCallback* callback) { |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 331 | mPendingRegistrationFrameCallbacks.insert(callback); |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 332 | } |
| 333 | |
John Reck | 01a5ea3 | 2014-12-03 13:01:07 -0800 | [diff] [blame] | 334 | bool RenderThread::removeFrameCallback(IFrameCallback* callback) { |
| 335 | size_t erased; |
| 336 | erased = mFrameCallbacks.erase(callback); |
| 337 | erased |= mPendingRegistrationFrameCallbacks.erase(callback); |
| 338 | return erased; |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 339 | } |
| 340 | |
| 341 | void RenderThread::pushBackFrameCallback(IFrameCallback* callback) { |
| 342 | if (mFrameCallbacks.erase(callback)) { |
| 343 | mPendingRegistrationFrameCallbacks.insert(callback); |
| 344 | } |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 345 | } |
| 346 | |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 347 | RenderTask* RenderThread::nextTask(nsecs_t* nextWakeup) { |
| 348 | AutoMutex _lock(mLock); |
| 349 | RenderTask* next = mQueue.peek(); |
| 350 | if (!next) { |
| 351 | mNextWakeup = LLONG_MAX; |
| 352 | } else { |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 353 | mNextWakeup = next->mRunAt; |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 354 | // Most tasks won't be delayed, so avoid unnecessary systemTime() calls |
| 355 | if (next->mRunAt <= 0 || next->mRunAt <= systemTime(SYSTEM_TIME_MONOTONIC)) { |
| 356 | next = mQueue.next(); |
John Reck | a5dda64 | 2014-05-22 15:43:54 -0700 | [diff] [blame] | 357 | } else { |
Chris Craik | d41c4d8 | 2015-01-05 15:51:13 -0800 | [diff] [blame] | 358 | next = nullptr; |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 359 | } |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 360 | } |
John Reck | 4f02bf4 | 2014-01-03 18:09:17 -0800 | [diff] [blame] | 361 | if (nextWakeup) { |
| 362 | *nextWakeup = mNextWakeup; |
| 363 | } |
| 364 | return next; |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 365 | } |
| 366 | |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 367 | } /* namespace renderthread */ |
| 368 | } /* namespace uirenderer */ |
| 369 | } /* namespace android */ |