Home
last modified time | relevance | path

Searched refs:totalVertices (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/buckets/
H A Dfill_extrusion_bucket.cpp54 std::size_t totalVertices = 0; in addFeature() local
57 totalVertices += ring.size(); in addFeature()
58 if (totalVertices > std::numeric_limits<uint16_t>::max()) in addFeature()
62 if (totalVertices == 0) continue; in addFeature()
65 flatIndices.reserve(totalVertices); in addFeature()
70 triangleSegments.back().vertexLength + (5 * (totalVertices - 1) + 1) > in addFeature()
79 assert(triangleIndex + (5 * (totalVertices - 1) + 1) <= in addFeature()
141 triangleSegment.vertexLength += totalVertices; in addFeature()
H A Dfill_bucket.cpp48 std::size_t totalVertices = 0; in addFeature() local
51 totalVertices += ring.size(); in addFeature()
52 if (totalVertices > std::numeric_limits<uint16_t>::max()) in addFeature()
89 …if (triangleSegments.empty() || triangleSegments.back().vertexLength + totalVertices > std::numeri… in addFeature()
103 triangleSegment.vertexLength += totalVertices; in addFeature()