HomeSort by relevance Sort by last modified time
    Searched refs:FillType (Results 1 - 25 of 180) sorted by null

1 2 3 4 5 6 7 8

  /cts/tests/tests/graphics/src/android/graphics/cts/
Path_FillTypeTest.java 21 import android.graphics.Path.FillType;
33 assertEquals(FillType.WINDING, FillType.valueOf("WINDING"));
34 assertEquals(FillType.EVEN_ODD, FillType.valueOf("EVEN_ODD"));
35 assertEquals(FillType.INVERSE_WINDING, FillType.valueOf("INVERSE_WINDING"));
36 assertEquals(FillType.INVERSE_EVEN_ODD, FillType.valueOf("INVERSE_EVEN_ODD"));
37 // Every FillType element will be tested somewhere else
    [all...]
  /frameworks/base/core/tests/coretests/src/android/graphics/
PathTest.java 30 final Path.FillType defaultFillType = path.getFillType();
31 final Path.FillType fillType = Path.FillType.INVERSE_EVEN_ODD;
32 assertFalse(fillType.equals(defaultFillType)); // Sanity check for the test itself.
34 path.setFillType(fillType);
36 assertEquals(path.getFillType(), fillType);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathFillTypes.java 50 private void showPath(Canvas canvas, int x, int y, Path.FillType ft,
70 showPath(canvas, 0, 0, Path.FillType.WINDING, paint);
71 showPath(canvas, 160, 0, Path.FillType.EVEN_ODD, paint);
72 showPath(canvas, 0, 160, Path.FillType.INVERSE_WINDING, paint);
73 showPath(canvas, 160, 160, Path.FillType.INVERSE_EVEN_ODD, paint);
  /external/skia/src/gpu/ccpr/
GrCCClipProcessor.h 23 GrCCClipProcessor(const ClipPath*, MustCheckBounds, SkPath::FillType overrideFillType);
34 const SkPath::FillType fOverrideFillType;
GrCCPathProcessor.h 61 GrCCPathProcessor(GrResourceProvider*, sk_sp<GrTextureProxy> atlas, SkPath::FillType);
66 SkPath::FillType fillType() const { return fFillType; }
83 const SkPath::FillType fFillType;
  /external/skqp/src/gpu/
GrPath.h 39 GrPathRendering::FillType getFillType() const { return fFillType; }
47 GrPathRendering::FillType fFillType;
GrDistanceFieldGenFromVector.h 33 inline bool IsDistanceFieldSupportedFillType(SkPath::FillType fFillType)
  /external/skqp/src/gpu/ccpr/
GrCCClipProcessor.h 23 GrCCClipProcessor(const ClipPath*, MustCheckBounds, SkPath::FillType overrideFillType);
34 const SkPath::FillType fOverrideFillType;
GrCCPathProcessor.h 61 GrCCPathProcessor(GrResourceProvider*, sk_sp<GrTextureProxy> atlas, SkPath::FillType);
66 SkPath::FillType fillType() const { return fFillType; }
83 const SkPath::FillType fFillType;
  /external/skia/experimental/svg/model/
SkSVGShape.h 29 SkPath::FillType) const = 0;
SkSVGPath.h 25 SkPath::FillType) const override;
SkSVGCircle.h 29 SkPath::FillType) const override;
SkSVGEllipse.h 30 SkPath::FillType) const override;
SkSVGPoly.h 33 SkPath::FillType) const override;
  /external/skia/src/gpu/
GrDistanceFieldGenFromVector.h 33 inline bool IsDistanceFieldSupportedFillType(SkPath::FillType fFillType)
GrPath.h 39 GrPathRendering::FillType getFillType() const { return fFillType; }
47 GrPathRendering::FillType fFillType;
  /external/skqp/experimental/svg/model/
SkSVGShape.h 29 SkPath::FillType) const = 0;
SkSVGPath.h 25 SkPath::FillType) const override;
SkSVGCircle.h 29 SkPath::FillType) const override;
SkSVGEllipse.h 30 SkPath::FillType) const override;
SkSVGPoly.h 33 SkPath::FillType) const override;
  /external/skia/tests/
PathOpsInverseTest.cpp 16 one.setFillType((SkPath::FillType) oneFill);
23 two.setFillType((SkPath::FillType) twoFill);
  /external/skqp/tests/
PathOpsInverseTest.cpp 16 one.setFillType((SkPath::FillType) oneFill);
23 two.setFillType((SkPath::FillType) twoFill);
  /external/skia/src/gpu/ops/
GrStencilPathOp.h 24 GrPathRendering::FillType fillType,
29 return std::unique_ptr<GrOp>(new GrStencilPathOp(viewMatrix, useHWAA, fillType,
45 GrPathRendering::FillType fillType,
52 , fFillType(fillType)
67 GrPathRendering::FillType fFillType;
  /external/skqp/src/gpu/ops/
GrStencilPathOp.h 24 GrPathRendering::FillType fillType,
29 return std::unique_ptr<GrOp>(new GrStencilPathOp(viewMatrix, useHWAA, fillType,
45 GrPathRendering::FillType fillType,
52 , fFillType(fillType)
67 GrPathRendering::FillType fFillType;

Completed in 998 milliseconds

1 2 3 4 5 6 7 8