caryclark@google.com | 66089e4 | 2013-04-10 15:55:37 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #include "PathOpsExtendedTest.h" |
| 9 | #include "PathOpsThreadedCommon.h" |
mtklein | 406654b | 2014-09-03 15:34:37 -0700 | [diff] [blame] | 10 | #include "SkTaskGroup.h" |
caryclark@google.com | 66089e4 | 2013-04-10 15:55:37 +0000 | [diff] [blame] | 11 | |
| 12 | PathOpsThreadedTestRunner::~PathOpsThreadedTestRunner() { |
| 13 | for (int index = 0; index < fRunnables.count(); index++) { |
| 14 | SkDELETE(fRunnables[index]); |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | void PathOpsThreadedTestRunner::render() { |
mtklein | 406654b | 2014-09-03 15:34:37 -0700 | [diff] [blame] | 19 | SkTaskGroup tg; |
caryclark@google.com | 66089e4 | 2013-04-10 15:55:37 +0000 | [diff] [blame] | 20 | for (int index = 0; index < fRunnables.count(); ++ index) { |
mtklein | 406654b | 2014-09-03 15:34:37 -0700 | [diff] [blame] | 21 | tg.add(fRunnables[index]); |
caryclark@google.com | 66089e4 | 2013-04-10 15:55:37 +0000 | [diff] [blame] | 22 | } |
caryclark@google.com | 66089e4 | 2013-04-10 15:55:37 +0000 | [diff] [blame] | 23 | } |