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

1 2

  /external/skia/experimental/svg/model/
SkSVGShape.cpp 14 const auto fillType = ctx.presentationContext().fInherited.fFillRule.get()->asFillType();
18 this->onDraw(ctx.canvas(), ctx.lengthContext(), *fillPaint, fillType);
22 this->onDraw(ctx.canvas(), ctx.lengthContext(), *strokePaint, fillType);
  /external/skqp/experimental/svg/model/
SkSVGShape.cpp 14 const auto fillType = ctx.presentationContext().fInherited.fFillRule.get()->asFillType();
18 this->onDraw(ctx.canvas(), ctx.lengthContext(), *fillPaint, fillType);
22 this->onDraw(ctx.canvas(), ctx.lengthContext(), *strokePaint, fillType);
  /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/fuzz/
FuzzCommon.h 30 uint8_t fillType;
31 fuzz->nextRange(&fillType, 0, (uint8_t)SkPath::kInverseEvenOdd_FillType);
32 path->setFillType((SkPath::FillType)fillType);
  /external/skqp/fuzz/
FuzzCommon.h 30 uint8_t fillType;
31 fuzz->nextRange(&fillType, 0, (uint8_t)SkPath::kInverseEvenOdd_FillType);
32 path->setFillType((SkPath::FillType)fillType);
  /external/skia/src/gpu/ccpr/
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/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 236 SkPath::FillType fillType = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]
275 result->setFillType(fillType);
301 result->setFillType(fillType);
SkPathOpsDebug.cpp     [all...]
  /external/skqp/src/gpu/ccpr/
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/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 236 SkPath::FillType fillType = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]
275 result->setFillType(fillType);
301 result->setFillType(fillType);
  /external/skia/src/gpu/ops/
GrDrawPathOp.h 26 GrPathRendering::FillType, GrAAType);
47 GrPathRendering::FillType fillType() const { return fFillType; }
71 GrPathRendering::FillType fFillType;
177 GrPathRendering::FillType fill, GrAAType aaType,
191 GrPaint&& paint, GrPathRendering::FillType fill, GrAAType aaType,
  /external/skqp/src/gpu/ops/
GrDrawPathOp.h 26 GrPathRendering::FillType, GrAAType);
47 GrPathRendering::FillType fillType() const { return fFillType; }
71 GrPathRendering::FillType fFillType;
177 GrPathRendering::FillType fill, GrAAType aaType,
191 GrPaint&& paint, GrPathRendering::FillType fill, GrAAType aaType,
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowVectorDrawable.java 66 int fillType;
112 propertiesBB.putInt(FILL_TYPE_INDEX * 4, path.fillType);
121 int strokeLineJoin, int fillType) {
134 path.fillType = fillType;
  /external/skia/src/core/
SkPath_serial.cpp 43 static SkPath::FillType extract_filltype(uint32_t packed) {
44 return static_cast<SkPath::FillType>((packed >> kFillType_SerializationShift) & 0x3);
165 FillType fillType = extract_filltype(packed);
188 this->setFillType(fillType);
290 FillType fillType = extract_filltype(packed);
313 fFillType = fillType;
  /external/skia/tools/debugger/
SkDebugCanvas.cpp 687 SkPath::FillType fillType = path.getFillType();
690 gFillTypeStrs[fillType]);
SkDrawCommand.cpp 80 #define SKDEBUGCANVAS_ATTRIBUTE_FILLTYPE "fillType"
    [all...]
  /external/skqp/tools/debugger/
SkDebugCanvas.cpp 687 SkPath::FillType fillType = path.getFillType();
690 gFillTypeStrs[fillType]);
  /frameworks/base/graphics/java/android/graphics/
Path.java 92 final FillType fillType = getFillType();
94 setFillType(fillType);
216 public enum FillType {
237 FillType(int ni) {
245 static final FillType[] sFillTypeArray = {
246 FillType.WINDING,
247 FillType.EVEN_ODD,
248 FillType.INVERSE_WINDING,
249 FillType.INVERSE_EVEN_OD
    [all...]
  /frameworks/base/libs/hwui/
VectorDrawable.h 223 int fillType = 0; /* non-zero or kWinding_FillType in Skia */
285 float getFillType() const { return mPrimitiveFields.fillType; }
290 int strokeLineCap, int strokeLineJoin, int fillType) {
302 mPrimitiveFields.fillType = fillType;
324 fillType,
  /external/skia/src/gpu/
GrTessellator.cpp 820 inline bool apply_fill_type(SkPath::FillType fillType, int winding) {
821 switch (fillType) {
836 inline bool apply_fill_type(SkPath::FillType fillType, Poly* poly) {
837 return poly && apply_fill_type(fillType, poly->fWinding);
    [all...]
  /external/skqp/src/gpu/
GrTessellator.cpp 820 inline bool apply_fill_type(SkPath::FillType fillType, int winding) {
821 switch (fillType) {
836 inline bool apply_fill_type(SkPath::FillType fillType, Poly* poly) {
837 return poly && apply_fill_type(fillType, poly->fWinding);
    [all...]

Completed in 878 milliseconds

1 2