Home
last modified time | relevance | path

Searched refs:fIndexCount (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/src/core/
DSkVertices.cpp35 fIndexCount; member
49 fISize = safe.mul(desc.fIndexCount, sizeof(uint16_t)); in Sizes()
52 if (desc.fIndexCount) { in Sizes()
54 numFanTris = desc.fIndexCount - 2; in Sizes()
139 fVertices->fIndexCount = desc.fIndexCount; in init()
150 SkASSERT(fVertices->fIndexCount); in detach()
152 for (int t = 0; t < fVertices->fIndexCount - 2; ++t) { in detach()
157 fVertices->fIndexCount = 3 * (fVertices->fIndexCount - 2); in detach()
159 SkASSERT(!fVertices->fIndexCount); in detach()
165 fVertices->fIndexCount = 3 * (fVertices->fVertexCount - 2); in detach()
[all …]
DSkVerticesPriv.h30 int indexCount() const { return fVertices->fIndexCount; } in indexCount()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DUnicodeCompressor.java276 private int [] fIndexCount = new int [ MAXINDEX + 1 ]; field in UnicodeCompressor
551 fIndexCount[curIndex]++; in compress()
565 if((fIndexCount[curIndex] > 1) || in compress()
747 fIndexCount[curIndex]++; in compress()
762 if((fIndexCount[curIndex] > 1) || in compress()
847 fIndexCount[i] = 0; in reset()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DUnicodeCompressor.java277 private int [] fIndexCount = new int [ MAXINDEX + 1 ]; field in UnicodeCompressor
548 fIndexCount[curIndex]++; in compress()
562 if((fIndexCount[curIndex] > 1) || in compress()
744 fIndexCount[curIndex]++; in compress()
759 if((fIndexCount[curIndex] > 1) || in compress()
843 fIndexCount[i] = 0; in reset()
/third_party/skia/src/gpu/
DGrSimpleMesh.h32 int fIndexCount; member
66 fIndexCount = indexCount; in setIndexed()
88 fIndexCount = indexCount; in setIndexedPatterned()
DGrOpFlushState.cpp236 this->drawIndexed(mesh.fIndexCount, mesh.fBaseIndex, mesh.fMinIndexValue, in drawMesh()
239 this->drawIndexPattern(mesh.fIndexCount, mesh.fPatternRepeatCount, in drawMesh()
DGrDrawIndirectCommand.h24 uint32_t fIndexCount; member
/third_party/skia/src/gpu/ops/
DDrawVerticesOp.cpp289 int fIndexCount; member in skgpu::v1::DrawVerticesOp::__anon2e467b300111::DrawVerticesOpImpl
318 fIndexCount = info.indexCount(); in DrawVerticesOpImpl()
346 (int)fPrimitiveType, fMeshes.count(), fVertexCount, fIndexCount, in onDumpInfo()
419 indices = target->makeIndexSpace(fIndexCount, &indexBuffer, &firstIndex); in onPrepareDraws()
475 fMesh->setIndexed(std::move(indexBuffer), fIndexCount, firstIndex, 0, fVertexCount - 1, in onPrepareDraws()
569 fIndexCount += that->fIndexCount; in onCombineIfPossible()
DShadowRRectOp.cpp234 fIndexCount = circle_type_to_index_count(kStroke_RRectType == type); in ShadowCircularRRectOp()
237 fIndexCount = rrect_type_to_index_count(type); in ShadowCircularRRectOp()
565 uint16_t* indices = target->makeIndexSpace(fIndexCount, &indexBuffer, &firstIndex); in onPrepareDraws()
601 fMesh->setIndexed(std::move(indexBuffer), fIndexCount, firstIndex, 0, fVertCount - 1, in onPrepareDraws()
624 fIndexCount += that->fIndexCount; in onCombineIfPossible()
653 int fIndexCount; member in __anon84451e630111::ShadowCircularRRectOp
DGrOvalOpFactory.cpp1213 fIndexCount = circle_type_to_index_count(stroked); in CircleOp()
1291 uint16_t* indices = target->makeIndexSpace(fIndexCount, &indexBuffer, &firstIndex); in onPrepareDraws()
1397 fMesh->setIndexed(std::move(indexBuffer), fIndexCount, firstIndex, 0, fVertCount - 1, in onPrepareDraws()
1439 fIndexCount += that->fIndexCount; in onCombineIfPossible()
1477 int fIndexCount; member in CircleOp
1586 fIndexCount = circle_type_to_index_count(true); in ButtCapDashedCircleOp()
1663 uint16_t* indices = target->makeIndexSpace(fIndexCount, &indexBuffer, &firstIndex); in onPrepareDraws()
1728 fMesh->setIndexed(std::move(indexBuffer), fIndexCount, firstIndex, 0, fVertCount - 1, in onPrepareDraws()
1762 fIndexCount += that->fIndexCount; in onCombineIfPossible()
1801 int fIndexCount; member in ButtCapDashedCircleOp
[all …]
/third_party/skia/include/core/
DSkVertices.h133 int fIndexCount; variable