Searched defs:fillType (Results 1 - 16 of 16) sorted by relevance

/external/skia/experimental/svg/model/
H A DSkSVGShape.cpp14 const SkPath::FillType fillType = local
19 this->onDraw(ctx.canvas(), ctx.lengthContext(), *fillPaint, fillType);
23 this->onDraw(ctx.canvas(), ctx.lengthContext(), *strokePaint, fillType);
/external/skia/src/gpu/ops/
H A DGrStencilPathOp.h25 GrPathRendering::FillType fillType,
31 return std::unique_ptr<GrOp>(new GrStencilPathOp(viewMatrix, useHWAA, fillType,
48 GrPathRendering::FillType fillType,
57 , fStencil(GrPathRendering::GetStencilPassSettings(fillType), hasStencilClip,
23 Make(const SkMatrix& viewMatrix, bool useHWAA, GrPathRendering::FillType fillType, bool hasStencilClip, int numStencilBits, const GrScissorState& scissor, GrRenderTarget* renderTarget, const GrPath* path) argument
46 GrStencilPathOp(const SkMatrix& viewMatrix, bool useHWAA, GrPathRendering::FillType fillType, bool hasStencilClip, int numStencilBits, const GrScissorState& scissor, GrRenderTarget* renderTarget, const GrPath* path) argument
H A DGrDrawPathOp.h41 GrPathRendering::FillType fillType() const { return fFillType; } function in class:GrDrawPathOpBase
H A DGrDrawPathOp.cpp58 GrPathRendering::FillType fillType, GrStencilSettings* stencil) {
61 stencil->reset(GrPathRendering::GetStencilPassSettings(fillType), stencilClip,
75 init_stencil_pass_settings(*state, this->fillType(), &stencil);
147 if (GrPathRendering::kWinding_FillType != this->fillType() ||
148 GrPathRendering::kWinding_FillType != that->fillType()) {
189 init_stencil_pass_settings(*state, this->fillType(), &stencil);
57 init_stencil_pass_settings(const GrOpFlushState& flushState, GrPathRendering::FillType fillType, GrStencilSettings* stencil) argument
/external/skia/src/pathops/
H A DSkPathOpsSimplify.cpp139 SkPath::FillType fillType = path.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType local
145 result->setFillType(fillType);
185 result->setFillType(fillType);
210 result->setFillType(fillType);
H A DSkOpBuilder.cpp40 SkPath::FillType fillType = path->getFillType(); local
41 if (fillType == SkPath::kInverseEvenOdd_FillType) {
42 fillType = SkPath::kInverseWinding_FillType;
43 } else if (fillType == SkPath::kEvenOdd_FillType) {
44 fillType = SkPath::kWinding_FillType;
51 path->setFillType(fillType);
90 path->setFillType(fillType);
107 path->setFillType(fillType);
H A DSkPathOpsOp.cpp236 SkPath::FillType fillType = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()] local
275 result->setFillType(fillType);
301 result->setFillType(fillType);
H A DSkPathOpsDebug.cpp2918 SkPath::FillType fillType = path.getFillType(); local
2919 SkASSERT(fillType >= SkPath::kWinding_FillType && fillType <= SkPath::kInverseEvenOdd_FillType);
2923 SkDebugf(" %s.setFillType(SkPath::%s);\n", name, gFillTypeStr[fillType]);
/external/skia/src/core/
H A DSkScan_Path.cpp95 static void walk_edges(SkEdge* prevHead, SkPath::FillType fillType, argument
102 int windingMask = (fillType & 1) ? 1 : -1;
/external/skia/fuzz/
H A DFuzzCanvas.cpp109 uint8_t fillType; local
110 fuzz->nextRange(&fillType, 0, (uint8_t)SkPath::kInverseEvenOdd_FillType);
111 path->setFillType((SkPath::FillType)fillType);
/external/skia/tools/debugger/
H A DSkDebugCanvas.cpp764 SkPath::FillType fillType = path.getFillType(); local
767 gFillTypeStrs[fillType]);
H A DSkDrawCommand.cpp70 #define SKDEBUGCANVAS_ATTRIBUTE_FILLTYPE "fillType"
1584 const char* fillType = path[SKDEBUGCANVAS_ATTRIBUTE_FILLTYPE].asCString(); local
1585 if (!strcmp(fillType, SKDEBUGCANVAS_FILLTYPE_WINDING)) {
1588 else if (!strcmp(fillType, SKDEBUGCANVAS_FILLTYPE_EVENODD)) {
1591 else if (!strcmp(fillType, SKDEBUGCANVAS_FILLTYPE_INVERSEWINDING)) {
1594 else if (!strcmp(fillType, SKDEBUGCANVAS_FILLTYPE_INVERSEEVENODD)) {
/external/skia/src/gpu/
H A DGrTessellator.cpp750 inline bool apply_fill_type(SkPath::FillType fillType, int winding) { argument
751 switch (fillType) {
766 inline bool apply_fill_type(SkPath::FillType fillType, Poly* poly) { argument
767 return poly && apply_fill_type(fillType, poly->fWinding);
1459 void remove_non_boundary_edges(const VertexList& mesh, SkPath::FillType fillType, argument
1471 apply_fill_type(fillType, leftEnclosingEdge->fWinding);
1475 bool filled = apply_fill_type(fillType, e->fWinding);
1620 void extract_boundary(EdgeList* boundary, Edge* e, SkPath::FillType fillType, SkArenaAlloc& alloc) { argument
1621 bool down = apply_fill_type(fillType, e->fWinding);
1653 VertexList* outerVertices, SkPath::FillType fillType,
1652 extract_boundaries(const VertexList& inMesh, VertexList* innerVertices, VertexList* outerVertices, SkPath::FillType fillType, Comparator& c, SkArenaAlloc& alloc) argument
1703 contours_to_polys(VertexList* contours, int contourCnt, SkPath::FillType fillType, const SkRect& pathBounds, bool antialias, VertexList* outerMesh, SkArenaAlloc& alloc) argument
1738 polys_to_triangles(Poly* polys, SkPath::FillType fillType, const AAParams* aaParams, void* data) argument
1751 SkPath::FillType fillType = path.getFillType(); local
1775 count_points(Poly* polys, SkPath::FillType fillType) argument
1827 SkPath::FillType fillType = antialias ? SkPath::kWinding_FillType : path.getFillType(); local
1866 SkPath::FillType fillType = path.getFillType(); local
[all...]
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 255 milliseconds