Home
last modified time | relevance | path

Searched refs:patchPreallocCount (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/src/gpu/tessellate/
DPathTessellator.h70 virtual int patchPreallocCount(int totalCombinedPathVerbCnt) const = 0;
93 if (int patchPreallocCount = this->patchPreallocCount(totalCombinedPathVerbCnt)) { in prepare() local
94 PatchWriter patchWriter(target, this, patchPreallocCount); in prepare()
DPathWedgeTessellator.h32 int patchPreallocCount(int totalCombinedPathVerbCnt) const final;
DPathCurveTessellator.h30 int patchPreallocCount(int totalCombinedPathVerbCnt) const final;
DPathCurveTessellator.cpp28 int PathCurveTessellator::patchPreallocCount(int totalCombinedPathVerbCnt) const { in patchPreallocCount() function in skgpu::PathCurveTessellator
DPathWedgeTessellator.cpp129 int PathWedgeTessellator::patchPreallocCount(int totalCombinedPathVerbCnt) const { in patchPreallocCount() function in skgpu::PathWedgeTessellator
/third_party/skia/samplecode/
DSamplePathTessellators.cpp134 int patchPreallocCount = fTessellator->patchPreallocCount(fPath.countVerbs()); in onPrepare() local
136 patchPreallocCount += fPath.countVerbs() - 1; in onPrepare()
138 PatchWriter patchWriter(flushState, fTessellator, patchPreallocCount); in onPrepare()
/third_party/skia/src/gpu/ops/
DPathInnerTriangulateOp.cpp421 int patchPreallocCount = fFanBreadcrumbs.count() + in onPrepare() local
422 fTessellator->patchPreallocCount(fPath.countVerbs()); in onPrepare()
423 SkASSERT(patchPreallocCount); // Otherwise fTessellator should be null. in onPrepare()
425 PatchWriter patchWriter(flushState, fTessellator, patchPreallocCount); in onPrepare()