Home | History | Annotate | Download | only in tests
      1 /*
      2  * Copyright 2012 Google Inc.
      3  *
      4  * Use of this source code is governed by a BSD-style license that can be
      5  * found in the LICENSE file.
      6  */
      7 #include "PathOpsExtendedTest.h"
      8 #include "PathOpsThreadedCommon.h"
      9 
     10 static void testOpCubicsMain(PathOpsThreadState* data) {
     11 #if DEBUG_SHOW_TEST_NAME
     12     strncpy(DEBUG_FILENAME_STRING, "", DEBUG_FILENAME_STRING_LENGTH);
     13 #endif
     14     SkASSERT(data);
     15     PathOpsThreadState& state = *data;
     16     char pathStr[1024];  // gdb: set print elements 400
     17     bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
     18     if (progress) {
     19         sk_bzero(pathStr, sizeof(pathStr));
     20     }
     21     for (int a = 0 ; a < 6; ++a) {
     22         for (int b = a + 1 ; b < 7; ++b) {
     23             for (int c = 0 ; c < 6; ++c) {
     24                 for (int d = c + 1 ; d < 7; ++d) {
     25                     for (int e = SkPath::kWinding_FillType ; e <= SkPath::kEvenOdd_FillType; ++e) {
     26     for (int f = SkPath::kWinding_FillType ; f <= SkPath::kEvenOdd_FillType; ++f) {
     27         SkPath pathA, pathB;
     28         if (progress) {
     29             char* str = pathStr;
     30             str += sprintf(str, "    path.setFillType(SkPath::k%s_FillType);\n",
     31                     e == SkPath::kWinding_FillType ? "Winding" : e == SkPath::kEvenOdd_FillType
     32                     ? "EvenOdd" : "?UNDEFINED");
     33             str += sprintf(str, "    path.moveTo(%d,%d);\n", state.fA, state.fB);
     34             str += sprintf(str, "    path.cubicTo(%d,%d, %d,%d, %d,%d);\n", state.fC, state.fD,
     35                     b, a, d, c);
     36             str += sprintf(str, "    path.close();\n");
     37             str += sprintf(str, "    pathB.setFillType(SkPath::k%s_FillType);\n",
     38                     f == SkPath::kWinding_FillType ? "Winding" : f == SkPath::kEvenOdd_FillType
     39                     ? "EvenOdd" : "?UNDEFINED");
     40             str += sprintf(str, "    pathB.moveTo(%d,%d);\n", a, b);
     41             str += sprintf(str, "    pathB.cubicTo(%d,%d, %d,%d, %d,%d);\n", c, d,
     42                     state.fB, state.fA, state.fD, state.fC);
     43             str += sprintf(str, "    pathB.close();\n");
     44         }
     45         pathA.setFillType((SkPath::FillType) e);
     46         pathA.moveTo(SkIntToScalar(state.fA), SkIntToScalar(state.fB));
     47         pathA.cubicTo(SkIntToScalar(state.fC), SkIntToScalar(state.fD), SkIntToScalar(b),
     48                 SkIntToScalar(a), SkIntToScalar(d), SkIntToScalar(c));
     49         pathA.close();
     50         pathB.setFillType((SkPath::FillType) f);
     51         pathB.moveTo(SkIntToScalar(a), SkIntToScalar(b));
     52         pathB.cubicTo(SkIntToScalar(c), SkIntToScalar(d), SkIntToScalar(state.fB),
     53                 SkIntToScalar(state.fA), SkIntToScalar(state.fD), SkIntToScalar(state.fC));
     54         pathB.close();
     55         for (int op = 0 ; op <= kXOR_PathOp; ++op)    {
     56             if (progress) {
     57                 outputProgress(state.fPathStr, pathStr, (SkPathOp) op);
     58             }
     59             testThreadedPathOp(state.fReporter, pathA, pathB, (SkPathOp) op, "cubics");
     60         }
     61     }
     62                     }
     63                 }
     64             }
     65         }
     66     }
     67 }
     68 
     69 DEF_TEST(PathOpsOpCubicsThreaded, reporter) {
     70     int threadCount = initializeTests(reporter, "cubicOp");
     71     PathOpsThreadedTestRunner testRunner(reporter, threadCount);
     72     for (int a = 0; a < 6; ++a) {  // outermost
     73         for (int b = a + 1; b < 7; ++b) {
     74             for (int c = 0 ; c < 6; ++c) {
     75                 for (int d = c + 1; d < 7; ++d) {
     76                     *testRunner.fRunnables.append() = SkNEW_ARGS(PathOpsThreadedRunnable,
     77                             (&testOpCubicsMain, a, b, c, d, &testRunner));
     78                 }
     79             }
     80             if (!reporter->allowExtendedTest()) goto finish;
     81         }
     82     }
     83 finish:
     84     testRunner.render();
     85     ShowTestArray();
     86 }
     87