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" |
11 #include "SkPath.h" | 11 #include "SkPath.h" |
12 #include "SkPathOpsTypes.h" | 12 #include "SkPathOpsTypes.h" |
13 #include "SkStream.h" | 13 #include "SkStream.h" |
14 #include "SkThread.h" | 14 #include "SkThread.h" |
15 #include "SkThreadUtils.h" | 15 #include "SkThreadUtils.h" |
16 #include "Test.h" | 16 #include "Test.h" |
17 | 17 |
18 struct PathOpsThreadState; | 18 struct PathOpsThreadState; |
19 | 19 |
20 struct TestDesc { | 20 struct TestDesc { |
21 void (*fun)(skiatest::Reporter*); | 21 void (*fun)(skiatest::Reporter*); |
22 const char* str; | 22 const char* str; |
23 }; | 23 }; |
24 | 24 |
25 //extern int comparePaths(const SkPath& one, const SkPath& two); | 25 //extern int comparePaths(const SkPath& one, const SkPath& two); |
26 extern int comparePaths(const SkPath& one, const SkPath& two, SkBitmap& bitmap); | 26 extern int comparePaths(const SkPath& one, const SkPath& two, SkBitmap& bitmap); |
27 extern bool drawAsciiPaths(const SkPath& one, const SkPath& two, bool drawPaths)
; | 27 extern bool drawAsciiPaths(const SkPath& one, const SkPath& two, bool drawPaths)
; |
28 extern void showOp(const SkPathOp op); | 28 extern void showOp(const SkPathOp op); |
29 extern bool testPathOp(skiatest::Reporter* reporter, const SkPath& a, const SkPa
th& b, | 29 extern bool testPathOp(skiatest::Reporter* reporter, const SkPath& a, const SkPa
th& b, |
30 const SkPathOp ); | 30 const SkPathOp , const char* testName = NULL); |
31 extern bool testSimplify(SkPath& path, bool useXor, SkPath& out, PathOpsThreadSt
ate& state, | 31 extern bool testSimplify(SkPath& path, bool useXor, SkPath& out, PathOpsThreadSt
ate& state, |
32 const char* pathStr); | 32 const char* pathStr); |
33 extern bool testSimplify(skiatest::Reporter* reporter, const SkPath& path); | 33 extern bool testSimplify(skiatest::Reporter* reporter, const SkPath& path); |
34 | 34 |
35 int initializeTests(skiatest::Reporter* reporter, const char* testName); | 35 int initializeTests(skiatest::Reporter* reporter, const char* testName); |
36 void outputProgress(char* ramStr, const char* pathStr, SkPath::FillType ); | 36 void outputProgress(char* ramStr, const char* pathStr, SkPath::FillType ); |
37 void outputProgress(char* ramStr, const char* pathStr, SkPathOp op); | 37 void outputProgress(char* ramStr, const char* pathStr, SkPathOp op); |
38 | 38 |
39 void RunTestSet(skiatest::Reporter* reporter, TestDesc tests[], size_t count, | 39 void RunTestSet(skiatest::Reporter* reporter, TestDesc tests[], size_t count, |
40 void (*firstTest)(skiatest::Reporter* ), | 40 void (*firstTest)(skiatest::Reporter* ), |
41 void (*stopTest)(skiatest::Reporter* ), bool reverse); | 41 void (*stopTest)(skiatest::Reporter* ), bool reverse); |
42 void ShowTestName(PathOpsThreadState* data, int a, int b, int c, int d); | 42 void ShowTestName(PathOpsThreadState* data, int a, int b, int c, int d); |
| 43 void ShowFunctionHeader(const char* name); |
| 44 void ShowPath(const SkPath& path, const char* pathName); |
| 45 void ShowOp(SkPathOp op, const char* pathOne, const char* pathTwo); |
43 | 46 |
44 #endif | 47 #endif |
OLD | NEW |