HomeSort by relevance Sort by last modified time
    Searched refs:SkThreadPool (Results 1 - 3 of 3) sorted by null

  /external/skia/include/utils/
SkThreadPool.h 18 class SkThreadPool {
24 explicit SkThreadPool(int count);
25 ~SkThreadPool();
  /external/skia/src/utils/
SkThreadPool.cpp 8 #include "SkThreadPool.h"
12 SkThreadPool::SkThreadPool(const int count)
14 // Create count threads, all running SkThreadPool::Loop.
16 SkThread* thread = SkNEW_ARGS(SkThread, (&SkThreadPool::Loop, this));
22 SkThreadPool::~SkThreadPool() {
35 /*static*/ void SkThreadPool::Loop(void* arg) {
36 // The SkThreadPool passes itself as arg to each thread as they're created.
37 SkThreadPool* pool = static_cast<SkThreadPool*>(arg)
    [all...]
  /external/skia/tools/
PictureRenderer.h 21 #include "SkThreadPool.h"
427 SkThreadPool fThreadPool;

Completed in 150 milliseconds