Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Side by Side Diff: tests/PathOpsExtendedTest.h

Issue 131103009: update pathops to circle sort (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: disable old test that still fails on linux 32 release Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/PathOpsDebug.cpp ('k') | tests/PathOpsExtendedTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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*, const char* filename);
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 , const char* testName = NULL); 30 const SkPathOp , const char* testName);
31 extern bool testPathFailOp(skiatest::Reporter* reporter, const SkPath& a, const SkPath& b,
32 const SkPathOp , const char* testName);
31 extern bool testThreadedPathOp(skiatest::Reporter* reporter, const SkPath& a, co nst SkPath& b, 33 extern bool testThreadedPathOp(skiatest::Reporter* reporter, const SkPath& a, co nst SkPath& b,
32 const SkPathOp , const char* testName = NULL); 34 const SkPathOp , const char* testName);
33 extern bool testSimplify(SkPath& path, bool useXor, SkPath& out, PathOpsThreadSt ate& state, 35 extern bool testSimplify(SkPath& path, bool useXor, SkPath& out, PathOpsThreadSt ate& state,
34 const char* pathStr); 36 const char* pathStr);
35 extern bool testSimplify(skiatest::Reporter* reporter, const SkPath& path); 37 extern bool testSimplify(skiatest::Reporter* reporter, const SkPath& path, const char* filename);
36 38
37 int initializeTests(skiatest::Reporter* reporter, const char* testName); 39 int initializeTests(skiatest::Reporter* reporter, const char* testName);
38 void outputProgress(char* ramStr, const char* pathStr, SkPath::FillType ); 40 void outputProgress(char* ramStr, const char* pathStr, SkPath::FillType );
39 void outputProgress(char* ramStr, const char* pathStr, SkPathOp op); 41 void outputProgress(char* ramStr, const char* pathStr, SkPathOp op);
40 42
41 void RunTestSet(skiatest::Reporter* reporter, TestDesc tests[], size_t count, 43 void RunTestSet(skiatest::Reporter* reporter, TestDesc tests[], size_t count,
42 void (*firstTest)(skiatest::Reporter* ), 44 void (*firstTest)(skiatest::Reporter* , const char* filename),
43 void (*stopTest)(skiatest::Reporter* ), bool reverse); 45 void (*stopTest)(skiatest::Reporter* , const char* filename), bo ol reverse);
46 void ShowTestArray();
44 void ShowTestName(PathOpsThreadState* data, int a, int b, int c, int d); 47 void ShowTestName(PathOpsThreadState* data, int a, int b, int c, int d);
45 void ShowFunctionHeader(const char* name); 48 void ShowFunctionHeader(const char* name);
46 void ShowPath(const SkPath& path, const char* pathName); 49 void ShowPath(const SkPath& path, const char* pathName);
47 void ShowOp(SkPathOp op, const char* pathOne, const char* pathTwo); 50 void ShowOp(SkPathOp op, const char* pathOne, const char* pathTwo);
48 51
49 #endif 52 #endif
OLDNEW
« no previous file with comments | « tests/PathOpsDebug.cpp ('k') | tests/PathOpsExtendedTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698