Home
last modified time | relevance | path

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

/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DVertexArrayVk.cpp664 size_t lastVertex = static_cast<size_t>(firstVertex + clampedVertexCount); in handleLineLoop() local
666 mLineLoopBufferFirstIndex != firstVertex || mLineLoopBufferLastIndex != lastVertex) in handleLineLoop()
673 mLineLoopBufferLastIndex = lastVertex; in handleLineLoop()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DVertexArrayVk.cpp906 size_t lastVertex = static_cast<size_t>(firstVertex + clampedVertexCount); in handleLineLoop() local
908 mLineLoopBufferFirstIndex != firstVertex || mLineLoopBufferLastIndex != lastVertex) in handleLineLoop()
915 mLineLoopBufferLastIndex = lastVertex; in handleLineLoop()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
Dmtl_render_utils.h336 uint32_t lastVertex,
638 uint32_t lastVertex,
Dmtl_render_utils.mm1086 uint32_t lastVertex,
1090 return mIndexUtils.generateLineLoopLastSegment(contextMtl, firstVertex, lastVertex, dstBuffer,
2325 uint32_t lastVertex,
2331 uint32_t indices[2] = {lastVertex, firstVertex};
/third_party/skia/src/gpu/geometry/
DGrTriangulator.h480 Vertex* lastVertex() const { return fTail ? fTail->fLastEdge->fBottom : fFirstVertex; } in lastVertex() function
DGrTriangulator.cpp1423 leftPoly = this->makePoly(&polys, leftPoly->lastVertex(), in tessellate()
1427 rightPoly = this->makePoly(&polys, rightPoly->lastVertex(), in tessellate()
1432 Edge* join = fAlloc->make<Edge>(leftPoly->lastVertex(), v, 1, in tessellate()
/third_party/flutter/skia/src/gpu/
DGrTessellator.cpp702 Vertex* lastVertex() const { return fTail ? fTail->fLastEdge->fBottom : fFirstVertex; } in lastVertex() function
1650 leftPoly = new_poly(&polys, leftPoly->lastVertex(), in tessellate()
1654 rightPoly = new_poly(&polys, rightPoly->lastVertex(), in tessellate()
1659 Edge* join = alloc.make<Edge>(leftPoly->lastVertex(), v, 1, Edge::Type::kInner); in tessellate()