aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/Intersection/EdgeWalker_Test.h
diff options
context:
space:
mode:
authorGravatar caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-07 21:25:27 +0000
committerGravatar caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-07 21:25:27 +0000
commit2ddff9388694263c7be9347de7eb768cd0847997 (patch)
treef16606b78f2f127761d95e003847fd4672f6d6a7 /experimental/Intersection/EdgeWalker_Test.h
parent97cee9735350cb472249ce1a827ba1aa6b2a5f59 (diff)
shape ops work in progress
milestone: all rect tests (639706) work git-svn-id: http://skia.googlecode.com/svn/trunk@4996 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'experimental/Intersection/EdgeWalker_Test.h')
-rw-r--r--experimental/Intersection/EdgeWalker_Test.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/experimental/Intersection/EdgeWalker_Test.h b/experimental/Intersection/EdgeWalker_Test.h
index 6a316f613e..492ba706e8 100644
--- a/experimental/Intersection/EdgeWalker_Test.h
+++ b/experimental/Intersection/EdgeWalker_Test.h
@@ -21,14 +21,22 @@ extern bool testSimplifyx(const SkPath& path);
struct State4 {
State4();
-
+ static pthread_mutex_t addQueue;
+ static pthread_cond_t checkQueue;
+ pthread_cond_t initialized;
+ static State4* queue;
+ State4* next;
+ pthread_t threadID;
+ int index;
+ bool done;
+ bool last;
int a;
int b;
int c;
int d;
int testsRun;
char filename[256];
- pthread_t threadID;
+
SkCanvas* canvas;
SkBitmap bitmap;
bool abcIsATriangle;