/third_party/skia/src/gpu/tessellate/ |
H A D | StrokeIterator.h | 35 : fViewMatrix(viewMatrix), fStroke(stroke) { in StrokeIterator() 179 switch (fStroke->getCap()) { in finishOpenContour() 212 switch (fStroke->getCap()) { in finishOpenContour() 227 if (!fStroke->isHairlineStyle()) { in finishOpenContour() 229 outset = {fStroke->getWidth() * .5f, 0}; in finishOpenContour() 310 if (!fStroke->isHairlineStyle()) { in fillSquareCapPoints() 312 lastTangent *= (.5f * fStroke->getWidth()) / lastTangent.length(); in fillSquareCapPoints() 332 if (!fStroke->isHairlineStyle()) { in fillSquareCapPoints() 334 firstTangent *= (-.5f * fStroke->getWidth()) / firstTangent.length(); in fillSquareCapPoints() 345 const SkStrokeRec* const fStroke; member in skgpu::StrokeIterator [all...] |
H A D | StrokeTessellator.h | 26 : fPath(path), fStroke(stroke), fColor(color) {} in PathStrokeList() 28 SkStrokeRec fStroke; member 132 SkASSERT(!head->fStroke.isHairlineStyle()); in fetchRadialSegmentsPerRadian() 138 fStrokeWidths[i++] = peekAhead->fStroke.getWidth(); in fetchRadialSegmentsPerRadian() 146 SkASSERT(fStrokeWidths[fBufferIdx] == head->fStroke.getWidth()); in fetchRadialSegmentsPerRadian()
|
H A D | StrokeFixedCountTessellator.cpp | 263 const SkStrokeRec& stroke = pathStrokeList->fStroke; in prepare() 277 const SkStrokeRec& stroke = pathStroke->fStroke; in prepare() 292 StrokeIterator strokeIter(pathStroke->fPath, &pathStroke->fStroke, &shaderMatrix); in prepare()
|
H A D | StrokeHardwareTessellator.cpp | 720 const SkStrokeRec& stroke = pathStrokeList->fStroke; in prepare() 733 const SkStrokeRec& stroke = pathStroke->fStroke; in prepare()
|
/third_party/skia/src/gpu/tessellate/shaders/ |
H A D | GrStrokeTessellationShader.cpp | 29 , fStroke(stroke) in GrStrokeTessellationShader() 405 fPatchAttribs, fMode, fStroke.getJoin(), fStroke.isHairlineStyle()); in getShaderDfxInfo() 413 SkASSERT(fStroke.getJoin() >> 2 == 0); in addToKey() 418 key = (key << 2) | ((keyNeedsJoin) ? fStroke.getJoin() : 0); in addToKey() 419 key = (key << 1) | (uint32_t)fStroke.isHairlineStyle(); in addToKey()
|
H A D | GrStrokeTessellationShader.h | 45 const SkStrokeRec& stroke() const { return fStroke;} in stroke() 74 const SkStrokeRec fStroke; member in GrStrokeTessellationShader
|
/third_party/skia/samplecode/ |
H A D | SamplePathOverstroke.cpp | 20 SkScalar fStroke; member in OverstrokeView 26 fStroke = 5; in OverstrokeView() 40 fStroke += 1.0; 43 fStroke -= 1.0; 156 p.setStrokeWidth(fStroke);
|
H A D | SamplePath.cpp | 77 SkScalar fDStroke, fStroke, fMinStroke, fMaxStroke; member in PathView 99 fStroke = 10; in init() 141 paint.setStrokeWidth(fStroke); in drawPath() 185 fStroke += fDStroke * delta; 186 if (fStroke > fMaxStroke || fStroke < fMinStroke) {
|
/third_party/skia/bench/ |
H A D | RectBench.cpp | 22 int fShift, fStroke; member in RectBench 35 , fStroke(stroke) in RectBench() 41 if (fStroke > 0) { in computeName() 42 fBaseName.appendf("_stroke_%d", fStroke); in computeName() 84 if (fStroke > 0) { 86 paint.setStrokeWidth(SkIntToScalar(fStroke));
|
/third_party/skia/src/gpu/ops/ |
H A D | StrokeTessellateOp.h | 31 SkStrokeRec& headStroke() { return fPathStrokeList.fStroke; } in headStroke()
|
H A D | GrOvalOpFactory.cpp | 82 format.printf("ShaderDfx_CircleGeometry_%d_%d_%d_%d_%d_%d_%d_%d", fStroke, fInClipPlane.isInitialized(), 89 b->addBool(fStroke, "stroked" ); 108 , fStroke(stroke) { in CircleGeometryProcessor() 201 if (cgp.fStroke) { 255 bool fStroke; variable 555 format.printf("ShaderDfx_EllipseGeometry_%d_%d_%d_%d", fStroke, 561 b->addBool(fStroke, "stroked"); 576 , fStroke(stroke) 646 if (egp.fStroke) { 673 if (egp.fStroke) { [all...] |
/third_party/skia/modules/svg/src/ |
H A D | SkSVGAttribute.cpp | 18 result.fStroke.set(SkSVGPaint(SkSVGPaint::Type::kNone)); in MakeInitial()
|
H A D | SkSVGRenderContext.cpp | 309 hasStroke = props.fStroke->type() != SkSVGPaint::Type::kNone; in applyOpacity() 479 auto p = this->commonPaint(*props.fStroke, *props.fStrokeOpacity); in strokePaint()
|
/third_party/skia/modules/svg/include/ |
H A D | SkSVGAttribute.h | 79 SkSVGProperty<SkSVGPaint , true> fStroke; member
|