HomeSort by relevance Sort by last modified time
    Searched defs:fillType (Results 1 - 12 of 12) sorted by null

  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
PathTest.java 29 final Path.FillType defaultFillType = path.getFillType();
30 final Path.FillType fillType = Path.FillType.INVERSE_EVEN_ODD;
31 assertFalse(fillType.equals(defaultFillType)); // Sanity check for the test itself.
33 path.setFillType(fillType);
35 assertEquals(path.getFillType(), fillType);
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsSimplify.cpp 163 SkPath::FillType fillType = path.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType
176 result->setFillType(fillType);
202 temp.setFillType(fillType);
206 result->setFillType(fillType);
SkPathOpsOp.cpp 257 SkPath::FillType fillType = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]
279 result->setFillType(fillType);
316 temp.setFillType(fillType);
320 result->setFillType(fillType);
  /external/chromium_org/third_party/skia/tests/
PathOpsExtendedTest.cpp 138 SkPath::FillType fillType = path.getFillType();
139 SkASSERT(fillType >= SkPath::kWinding_FillType && fillType <= SkPath::kInverseEvenOdd_FillType);
143 SkDebugf(" %s.setFillType(SkPath::%s);\n", pathName, gFillTypeStr[fillType]);
524 SkPath::FillType fillType = useXor ? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType;
525 path.setFillType(fillType);
546 if (fillType == SkPath::kEvenOdd_FillType) {
701 void outputProgress(char* ramStr, const char* pathStr, SkPath::FillType pathFillType)
    [all...]
  /external/skia/src/pathops/
SkPathOpsSimplify.cpp 163 SkPath::FillType fillType = path.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType
176 result->setFillType(fillType);
202 temp.setFillType(fillType);
206 result->setFillType(fillType);
SkPathOpsOp.cpp 257 SkPath::FillType fillType = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]
279 result->setFillType(fillType);
316 temp.setFillType(fillType);
320 result->setFillType(fillType);
  /external/skia/tests/
PathOpsExtendedTest.cpp 138 SkPath::FillType fillType = path.getFillType();
139 SkASSERT(fillType >= SkPath::kWinding_FillType && fillType <= SkPath::kInverseEvenOdd_FillType);
143 SkDebugf(" %s.setFillType(SkPath::%s);\n", pathName, gFillTypeStr[fillType]);
524 SkPath::FillType fillType = useXor ? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType;
525 path.setFillType(fillType);
546 if (fillType == SkPath::kEvenOdd_FillType) {
701 void outputProgress(char* ramStr, const char* pathStr, SkPath::FillType pathFillType)
    [all...]
  /external/chromium_org/third_party/skia/src/utils/debugger/
SkDebugCanvas.cpp 674 SkPath::FillType fillType = path.getFillType();
677 gFillTypeStrs[fillType]);
  /external/skia/src/utils/debugger/
SkDebugCanvas.cpp 674 SkPath::FillType fillType = path.getFillType();
677 gFillTypeStrs[fillType]);
  /frameworks/base/graphics/java/android/graphics/
Path.java 76 final FillType fillType = getFillType();
78 setFillType(fillType);
188 public enum FillType {
209 FillType(int ni) {
217 static final FillType[] sFillTypeArray = {
218 FillType.WINDING,
219 FillType.EVEN_ODD,
220 FillType.INVERSE_WINDING,
221 FillType.INVERSE_EVEN_OD
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalker_TestUtility.cpp 392 SkPath::FillType fillType = useXor ? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType;
393 path.setFillType(fillType);
409 if (fillType == SkPath::kEvenOdd_FillType) {
600 void outputProgress(const State4& state, const char* pathStr, SkPath::FillType pathFillType) {
  /external/skia/experimental/Intersection/
EdgeWalker_TestUtility.cpp 392 SkPath::FillType fillType = useXor ? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType;
393 path.setFillType(fillType);
409 if (fillType == SkPath::kEvenOdd_FillType) {
600 void outputProgress(const State4& state, const char* pathStr, SkPath::FillType pathFillType) {

Completed in 329 milliseconds