DMTaskRunner.h 656 Bytes
Newer Older
1 2 3 4 5 6
#ifndef DMTaskRunner_DEFINED
#define DMTaskRunner_DEFINED

#include "SkThreadPool.h"
#include "SkTypes.h"

7 8 9
// TaskRunner runs Tasks on one of two threadpools depending on the Task's usesGpu() method.
// This lets us drive the GPU with a small number of threads (e.g. 2 or 4 can be faster than 1)
// while not swamping it with requests from the full fleet of threads that CPU-bound tasks run on.
10 11 12 13 14 15 16

namespace DM {

class Task;

class TaskRunner : SkNoncopyable {
public:
17
    TaskRunner(int cputhreads, int gpuThreads);
18 19 20 21 22 23 24 25 26 27 28

    void add(Task* task);
    void wait();

private:
    SkThreadPool fMain, fGpu;
};

}  // namespace DM

#endif  // DMTaskRunner_DEFINED