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
diff --git a/experimental/Intersection/EdgeWalker_Test.h b/experimental/Intersection/EdgeWalker_Test.h
index 6a316f61..492ba70 100644
--- a/experimental/Intersection/EdgeWalker_Test.h
+++ b/experimental/Intersection/EdgeWalker_Test.h
@@ -21,14 +21,22 @@
 
 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;