HomeSort by relevance Sort by last modified time
    Searched defs:RenderTask (Results 1 - 2 of 2) sorted by null

  /frameworks/base/libs/hwui/renderthread/
RenderTask.h 34 * RenderThread will only invoke RenderTask::run(). It is the responsibility
35 * of the RenderTask to know if it needs to suicide at the end of run() or
37 * anything on RenderTask after the first call to run().
48 class ANDROID_API RenderTask {
50 ANDROID_API RenderTask() : mNext(nullptr), mRunAt(0) {}
51 ANDROID_API virtual ~RenderTask() {}
55 RenderTask* mNext;
59 class SignalingRenderTask : public RenderTask {
62 SignalingRenderTask(RenderTask* task, Mutex* lock, Condition* signal)
67 RenderTask* mTask
    [all...]