Home
last modified time | relevance | path

Searched refs:fStrokes (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/experimental/skrive/src/
DShape.cpp34 fStrokes.clear(); in onRevalidate()
42 auto& bucket = paint->style() == SkPaint::kFill_Style ? fFills : fStrokes; in onRevalidate()
50 fGeometries.size(), fFills.size(), fStrokes.size()); in onRevalidate()
68 for (const auto* stroke : fStrokes) { in onRender()
/third_party/flutter/skia/src/gpu/ccpr/
DGrCCStroker.cpp522 int instanceIdx = fCurrNextInstances->fStrokes[0]++; in appendLinearStrokeInstance()
523 SkASSERT(instanceIdx < fCurrEndInstances->fStrokes[0]); in appendLinearStrokeInstance()
532 int instanceIdx = fCurrNextInstances->fStrokes[numLinearSegmentsLog2]++; in appendCubicStrokeInstance()
533 SkASSERT(instanceIdx < fCurrEndInstances->fStrokes[numLinearSegmentsLog2]); in appendCubicStrokeInstance()
583 fBaseInstances[0].fStrokes[0] = 0; in prepareToDraw()
584 fBaseInstances[1].fStrokes[0] = fInstanceCounts[0]->fStrokes[0]; in prepareToDraw()
585 int endLinearStrokesIdx = fBaseInstances[1].fStrokes[0] + fInstanceCounts[1]->fStrokes[0]; in prepareToDraw()
591 fBaseInstances[j].fStrokes[i] = cubicStrokesIdx; in prepareToDraw()
592 cubicStrokesIdx += fInstanceCounts[j]->fStrokes[i]; in prepareToDraw()
743 int baseInstance = fBaseInstances[(int)GrScissorTest::kDisabled].fStrokes[numSegmentsLog2]; in appendStrokeMeshesToBuffers()
[all …]
DGrCCStrokeGeometry.h82 int fStrokes[kMaxNumLinearSegmentsLog2 + 1]; member
153 ret.fStrokes[i] = fStrokes[i] + t.fStrokes[i];
DGrCCStrokeGeometry.cpp395 ++fCurrStrokeTallies->fStrokes[numSegmentsLog2]; in recordStroke()
557 fCurrStrokeTallies->fStrokes[0] += 2; in recordCapsIfAny()
/third_party/flutter/skia/samplecode/
DSampleAAGeometry.cpp810 SkTArray<Stroke> fStrokes; member in AAGeometryView
1479 fStrokes.reset(); in gather_strokes()
1481 Stroke& inner = fStrokes.push_back(); in gather_strokes()
1484 Stroke& outer = fStrokes.push_back(); in gather_strokes()
1495 for (int index = 0; index < fStrokes.count(); ++index) { in trim_strokes()
1496 SkPath& outPath = fStrokes[index].fPath; in trim_strokes()
1497 for (int inner = 0; inner < fStrokes.count(); ++inner) { in trim_strokes()
1501 SkPath& inPath = fStrokes[inner].fPath; in trim_strokes()
/third_party/skia/experimental/skrive/include/
DSkRive.h270 fStrokes; variable