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

  /external/skia/experimental/svg/model/
SkSVGShape.cpp 14 const SkPath::FillType fillType =
19 this->onDraw(ctx.canvas(), ctx.lengthContext(), *fillPaint, fillType);
23 this->onDraw(ctx.canvas(), ctx.lengthContext(), *strokePaint, fillType);
31 SkPath::FillType SkSVGShape::FillRuleToFillType(const SkSVGFillRule& fillRule) {
  /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);
  /external/skia/src/gpu/ccpr/
GrCCPRPathProcessor.h 57 GrCCPRPathProcessor(GrResourceProvider*, sk_sp<GrTextureProxy> atlas, SkPath::FillType,
62 SkPath::FillType fillType() const { return fFillType; }
79 const SkPath::FillType fFillType;
  /external/skia/src/pathops/
SkOpBuilder.cpp 39 SkPath::FillType fillType = path->getFillType();
40 if (fillType == SkPath::kInverseEvenOdd_FillType) {
41 fillType = SkPath::kInverseWinding_FillType;
42 } else if (fillType == SkPath::kEvenOdd_FillType) {
43 fillType = SkPath::kWinding_FillType;
50 path->setFillType(fillType);
88 path->setFillType(fillType);
105 path->setFillType(fillType);
SkPathOpsSimplify.cpp 139 SkPath::FillType fillType = path.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType
145 result->setFillType(fillType);
184 result->setFillType(fillType);
209 result->setFillType(fillType);
SkPathOpsOp.cpp 235 SkPath::FillType fillType = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]
274 result->setFillType(fillType);
300 result->setFillType(fillType);
SkPathOpsDebug.cpp     [all...]
  /external/skia/src/gpu/ops/
GrDrawPathOp.h 26 GrPathRendering::FillType, GrAAType);
41 GrPathRendering::FillType fillType() const { return fFillType; }
63 GrPathRendering::FillType fFillType;
169 GrPathRendering::FillType fill, GrAAType aaType,
183 GrPaint&& paint, GrPathRendering::FillType fill, GrAAType aaType,
  /external/skia/tools/debugger/
SkDebugCanvas.cpp 686 SkPath::FillType fillType = path.getFillType();
689 gFillTypeStrs[fillType]);
SkDrawCommand.cpp 79 #define SKDEBUGCANVAS_ATTRIBUTE_FILLTYPE "fillType"
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 84 final FillType fillType = getFillType();
86 setFillType(fillType);
208 public enum FillType {
229 FillType(int ni) {
237 static final FillType[] sFillTypeArray = {
238 FillType.WINDING,
239 FillType.EVEN_ODD,
240 FillType.INVERSE_WINDING,
241 FillType.INVERSE_EVEN_OD
    [all...]
  /external/skia/fuzz/
FuzzCanvas.cpp 110 uint8_t fillType;
111 fuzz->nextRange(&fillType, 0, (uint8_t)SkPath::kInverseEvenOdd_FillType);
112 path->setFillType((SkPath::FillType)fillType);
    [all...]
  /frameworks/base/libs/hwui/
VectorDrawable.h 222 int fillType = 0; /* non-zero or kWinding_FillType in Skia */
311 return mPrimitiveFields.fillType;
317 int fillType) {
329 mPrimitiveFields.fillType = fillType;
350 fillType,
  /external/skia/src/gpu/
GrTessellator.cpp 755 inline bool apply_fill_type(SkPath::FillType fillType, int winding) {
756 switch (fillType) {
771 inline bool apply_fill_type(SkPath::FillType fillType, Poly* poly) {
772 return poly && apply_fill_type(fillType, poly->fWinding);
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
VectorDrawable.java 174 * <dt><code>android:fillType</code></dt>
175 * <dd>For SDK 24+, sets the fillType for a path. The types can be either "evenOdd" or "nonZero". They behave the
    [all...]
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/27/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 459 milliseconds