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

  /external/chromium_org/third_party/skia/src/utils/
SkThreadPool.cpp 9 #include "SkThreadPool.h"
30 SkThreadPool::SkThreadPool(int count)
33 // Create count threads, all running SkThreadPool::Loop.
35 SkThread* thread = SkNEW_ARGS(SkThread, (&SkThreadPool::Loop, this));
41 SkThreadPool::~SkThreadPool() {
54 /*static*/ void SkThreadPool::Loop(void* arg) {
55 // The SkThreadPool passes itself as arg to each thread as they're created.
56 SkThreadPool* pool = static_cast<SkThreadPool*>(arg)
    [all...]
  /external/skia/src/utils/
SkThreadPool.cpp 9 #include "SkThreadPool.h"
30 SkThreadPool::SkThreadPool(int count)
33 // Create count threads, all running SkThreadPool::Loop.
35 SkThread* thread = SkNEW_ARGS(SkThread, (&SkThreadPool::Loop, this));
41 SkThreadPool::~SkThreadPool() {
54 /*static*/ void SkThreadPool::Loop(void* arg) {
55 // The SkThreadPool passes itself as arg to each thread as they're created.
56 SkThreadPool* pool = static_cast<SkThreadPool*>(arg)
    [all...]
  /external/chromium_org/third_party/skia/include/utils/
SkThreadPool.h 18 class SkThreadPool {
25 explicit SkThreadPool(int count);
26 ~SkThreadPool();
  /external/skia/include/utils/
SkThreadPool.h 18 class SkThreadPool {
25 explicit SkThreadPool(int count);
26 ~SkThreadPool();

Completed in 1148 milliseconds