Lines Matching defs:RenderTask
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;
74 class MethodInvokeRenderTask : public RenderTask {