Home
last modified time | relevance | path

Searched refs:numSegmentsLog2 (Results 1 – 4 of 4) sorted by relevance

/external/skqp/src/gpu/ccpr/
DGrCCStrokeGeometry.cpp388 void GrCCStrokeGeometry::recordStroke(Verb verb, int numSegmentsLog2) { in recordStroke() argument
389 SkASSERT(Verb::kLinearStroke != verb || 0 == numSegmentsLog2); in recordStroke()
390 SkASSERT(numSegmentsLog2 <= kMaxNumLinearSegmentsLog2); in recordStroke()
393 SkASSERT(numSegmentsLog2 > 0); in recordStroke()
394 fParams.push_back().fNumLinearSegmentsLog2 = numSegmentsLog2; in recordStroke()
396 ++fCurrStrokeTallies->fStrokes[numSegmentsLog2]; in recordStroke()
DGrCCStroker.cpp721 void GrCCStroker::appendStrokeMeshesToBuffers(int numSegmentsLog2, const Batch& batch, in appendStrokeMeshesToBuffers() argument
728 int numStripVertices = (0 == numSegmentsLog2) ? 4 : ((1 << numSegmentsLog2) + 3) * 2; in appendStrokeMeshesToBuffers()
731 int baseInstance = fBaseInstances[(int)GrScissorTest::kDisabled].fStrokes[numSegmentsLog2]; in appendStrokeMeshesToBuffers()
732 int startIdx = startIndices[(int)GrScissorTest::kDisabled]->fStrokes[numSegmentsLog2]; in appendStrokeMeshesToBuffers()
733 int endIdx = batch.fNonScissorEndInstances->fStrokes[numSegmentsLog2]; in appendStrokeMeshesToBuffers()
743 baseInstance = fBaseInstances[(int)GrScissorTest::kEnabled].fStrokes[numSegmentsLog2]; in appendStrokeMeshesToBuffers()
744 startIdx = startIndices[(int)GrScissorTest::kEnabled]->fStrokes[numSegmentsLog2]; in appendStrokeMeshesToBuffers()
747 endIdx = subBatch.fEndInstances->fStrokes[numSegmentsLog2]; in appendStrokeMeshesToBuffers()
DGrCCStroker.h96 void appendStrokeMeshesToBuffers(int numSegmentsLog2, const Batch&,
DGrCCStrokeGeometry.h110 void recordStroke(Verb, int numSegmentsLog2);