HomeSort by relevance Sort by last modified time
    Searched defs:fillType (Results 1 - 7 of 7) 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/skia/src/pathops/
SkPathOpsSimplify.cpp 157 SkPath::FillType fillType = path.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType
163 result->setFillType(fillType);
183 result->setFillType(fillType);
201 result->setFillType(fillType);
207 temp.setFillType(fillType);
211 result->setFillType(fillType);
SkPathOpsOp.cpp 212 fprintf(file, " path.setFillType((SkPath::FillType) %d);\n", one.getFillType());
216 fprintf(file, " path.setFillType((SkPath::FillType) %d);\n", two.getFillType());
243 SkPath::FillType fillType = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]
273 result->setFillType(fillType);
292 result->setFillType(fillType);
297 temp.setFillType(fillType);
301 result->setFillType(fillType);
SkPathOpsDebug.cpp 654 SkPath::FillType fillType = path.getFillType();
655 SkASSERT(fillType >= SkPath::kWinding_FillType && fillType <= SkPath::kInverseEvenOdd_FillType);
659 SkDebugf(" %s.setFillType(SkPath::%s);\n", name, gFillTypeStr[fillType]);
  /external/skia/src/utils/debugger/
SkDebugCanvas.cpp 617 SkPath::FillType fillType = path.getFillType();
620 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/skia/src/gpu/
GrTessellatingPathRenderer.cpp 621 inline bool apply_fill_type(SkPath::FillType fillType, int winding) {
622 switch (fillType) {
    [all...]

Completed in 462 milliseconds