Home
last modified time | relevance | path

Searched refs:totalCombinedPathVerbCnt (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/src/gpu/tessellate/
DPathTessellator.h70 virtual int patchPreallocCount(int totalCombinedPathVerbCnt) const = 0;
91 int totalCombinedPathVerbCnt, in prepare() argument
93 if (int patchPreallocCount = this->patchPreallocCount(totalCombinedPathVerbCnt)) { in prepare()
121 static int MaxCombinedFanEdgesInPathDrawList(int totalCombinedPathVerbCnt) { in MaxCombinedFanEdgesInPathDrawList() argument
126 return totalCombinedPathVerbCnt; in MaxCombinedFanEdgesInPathDrawList()
DPathCurveTessellator.cpp28 int PathCurveTessellator::patchPreallocCount(int totalCombinedPathVerbCnt) const { in patchPreallocCount()
30 int approxNumChops = (totalCombinedPathVerbCnt + 3) / 4; in patchPreallocCount()
33 return totalCombinedPathVerbCnt + approxNumChops * 2; in patchPreallocCount()
DPathWedgeTessellator.h32 int patchPreallocCount(int totalCombinedPathVerbCnt) const final;
DPathCurveTessellator.h30 int patchPreallocCount(int totalCombinedPathVerbCnt) const final;
DPathWedgeTessellator.cpp129 int PathWedgeTessellator::patchPreallocCount(int totalCombinedPathVerbCnt) const { in patchPreallocCount()
131 int maxWedges = MaxCombinedFanEdgesInPathDrawList(totalCombinedPathVerbCnt); in patchPreallocCount()
/third_party/skia/src/gpu/tessellate/shaders/
DGrPathTessellationShader.cpp62 int totalCombinedPathVerbCnt, in Make() argument
67 totalCombinedPathVerbCnt >= caps.minPathVerbsForHwTessellation() && in Make()
DGrPathTessellationShader.h27 int totalCombinedPathVerbCnt,
/third_party/skia/src/gpu/ops/
DAtlasRenderTask.h81 int totalCombinedPathVerbCnt() const { return fTotalCombinedPathVerbCnt; } in totalCombinedPathVerbCnt() function
DAtlasRenderTask.cpp101 pathList->totalCombinedPathVerbCnt(), in onMakeClosed()