• Home
  • Raw
  • Download

Lines Matching refs:startIdx

732     int startIdx = startIndices[(int)GrScissorTest::kDisabled]->fStrokes[numSegmentsLog2];  in appendStrokeMeshesToBuffers()  local
734 SkASSERT(endIdx >= startIdx); in appendStrokeMeshesToBuffers()
735 if (int instanceCount = endIdx - startIdx) { in appendStrokeMeshesToBuffers()
737 mesh.setInstanced(fInstanceBuffer, instanceCount, baseInstance + startIdx, in appendStrokeMeshesToBuffers()
744 startIdx = startIndices[(int)GrScissorTest::kEnabled]->fStrokes[numSegmentsLog2]; in appendStrokeMeshesToBuffers()
748 SkASSERT(endIdx >= startIdx); in appendStrokeMeshesToBuffers()
749 if (int instanceCount = endIdx - startIdx) { in appendStrokeMeshesToBuffers()
751 mesh.setInstanced(fInstanceBuffer, instanceCount, baseInstance + startIdx, in appendStrokeMeshesToBuffers()
754 startIdx = endIdx; in appendStrokeMeshesToBuffers()
782 int startIdx = startIndices[(int)GrScissorTest::kDisabled]->*InstanceType; in drawConnectingGeometry() local
784 SkASSERT(endIdx >= startIdx); in drawConnectingGeometry()
785 if (int instanceCount = endIdx - startIdx) { in drawConnectingGeometry()
786 processor.appendMesh(fInstanceBuffer, instanceCount, baseInstance + startIdx, in drawConnectingGeometry()
793 startIdx = startIndices[(int)GrScissorTest::kEnabled]->*InstanceType; in drawConnectingGeometry()
797 SkASSERT(endIdx >= startIdx); in drawConnectingGeometry()
798 if (int instanceCount = endIdx - startIdx) { in drawConnectingGeometry()
799 processor.appendMesh(fInstanceBuffer, instanceCount, baseInstance + startIdx, in drawConnectingGeometry()
802 startIdx = endIdx; in drawConnectingGeometry()