| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 #ifndef PathOpsExtendedTest_DEFINED | 7 #ifndef PathOpsExtendedTest_DEFINED |
| 8 #define PathOpsExtendedTest_DEFINED | 8 #define PathOpsExtendedTest_DEFINED |
| 9 | 9 |
| 10 #include "SkBitmap.h" | 10 #include "SkBitmap.h" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 const char* filename, bool checkFail); | 51 const char* filename, bool checkFail); |
| 52 | 52 |
| 53 void initializeTests(skiatest::Reporter* reporter, const char* testName); | 53 void initializeTests(skiatest::Reporter* reporter, const char* testName); |
| 54 void outputProgress(char* ramStr, const char* pathStr, SkPath::FillType ); | 54 void outputProgress(char* ramStr, const char* pathStr, SkPath::FillType ); |
| 55 void outputProgress(char* ramStr, const char* pathStr, SkPathOp op); | 55 void outputProgress(char* ramStr, const char* pathStr, SkPathOp op); |
| 56 | 56 |
| 57 void RunTestSet(skiatest::Reporter* reporter, TestDesc tests[], size_t count, | 57 void RunTestSet(skiatest::Reporter* reporter, TestDesc tests[], size_t count, |
| 58 void (*firstTest)(skiatest::Reporter* , const char* filename), | 58 void (*firstTest)(skiatest::Reporter* , const char* filename), |
| 59 void (*skipTest)(skiatest::Reporter* , const char* filename), | 59 void (*skipTest)(skiatest::Reporter* , const char* filename), |
| 60 void (*stopTest)(skiatest::Reporter* , const char* filename), bo
ol reverse); | 60 void (*stopTest)(skiatest::Reporter* , const char* filename), bo
ol reverse); |
| 61 void ShowTestArray(const char* testName); | |
| 62 void ShowTestName(PathOpsThreadState* data, int a, int b, int c, int d); | 61 void ShowTestName(PathOpsThreadState* data, int a, int b, int c, int d); |
| 63 void ShowFunctionHeader(const char* name); | 62 void ShowFunctionHeader(const char* name); |
| 64 void ShowPath(const SkPath& path, const char* pathName); | 63 void ShowPath(const SkPath& path, const char* pathName); |
| 65 void ShowOp(SkPathOp op, const char* pathOne, const char* pathTwo); | 64 void ShowOp(SkPathOp op, const char* pathOne, const char* pathTwo); |
| 66 | 65 |
| 67 #endif | 66 #endif |
| OLD | NEW |