Lines Matching defs:state
23 PathOpsThreadState& state = *data;
24 int aShape = state.fA & 0x03;
25 SkPathDirection aCW = state.fA >> 2 ? SkPathDirection::kCCW : SkPathDirection::kCW;
26 int bShape = state.fB & 0x03;
27 SkPathDirection bCW = state.fB >> 2 ? SkPathDirection::kCCW : SkPathDirection::kCW;
28 int cShape = state.fC & 0x03;
29 SkPathDirection cCW = state.fC >> 2 ? SkPathDirection::kCCW : SkPathDirection::kCW;
30 int dShape = state.fD & 0x03;
31 SkPathDirection dCW = state.fD >> 2 ? SkPathDirection::kCCW : SkPathDirection::kCW;
67 if (state.fReporter->verbose()) {
99 if (state.fReporter->verbose()) {
131 if (state.fReporter->verbose()) {
163 if (state.fReporter->verbose()) {
173 if (state.fReporter->verbose()) {
174 state.outputProgress(pathStr.c_str(), SkPathFillType::kWinding);
176 testSimplify(path, false, out, state, pathStr.c_str());
177 if (state.fReporter->verbose()) {
178 state.outputProgress(pathStr.c_str(), SkPathFillType::kEvenOdd);
180 testSimplify(path, true, out, state, pathStr.c_str());