Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/buckets/
H A Dheatmap_bucket.cpp43 constexpr const uint16_t vertexLength = 4; in addFeature() local
56 …if (segments.empty() || segments.back().vertexLength + vertexLength > std::numeric_limits<uint16_t… in addFeature()
76 assert(segment.vertexLength <= std::numeric_limits<uint16_t>::max()); in addFeature()
77 uint16_t index = segment.vertexLength; in addFeature()
84 segment.vertexLength += vertexLength; in addFeature()
H A Dfill_bucket.cpp64 …if (lineSegments.empty() || lineSegments.back().vertexLength + nVertices > std::numeric_limits<uin… in addFeature()
69 assert(lineSegment.vertexLength <= std::numeric_limits<uint16_t>::max()); in addFeature()
70 uint16_t lineIndex = lineSegment.vertexLength; in addFeature()
80 lineSegment.vertexLength += nVertices; in addFeature()
89 …if (triangleSegments.empty() || triangleSegments.back().vertexLength + totalVertices > std::numeri… in addFeature()
94 assert(triangleSegment.vertexLength <= std::numeric_limits<uint16_t>::max()); in addFeature()
95 uint16_t triangleIndex = triangleSegment.vertexLength; in addFeature()
103 triangleSegment.vertexLength += totalVertices; in addFeature()
H A Dhillshade_bucket.cpp73 constexpr const uint16_t vertexLength = 4; in setMask() local
85 if (segments.back().vertexLength + vertexLength > std::numeric_limits<uint16_t>::max()) { in setMask()
100 assert(segment.vertexLength <= std::numeric_limits<uint16_t>::max()); in setMask()
101 const uint16_t offset = segment.vertexLength; in setMask()
108 segment.vertexLength += vertexLength; in setMask()
H A Draster_bucket.cpp68 constexpr const uint16_t vertexLength = 4; in setMask() local
80 if (segments.back().vertexLength + vertexLength > std::numeric_limits<uint16_t>::max()) { in setMask()
95 assert(segment.vertexLength <= std::numeric_limits<uint16_t>::max()); in setMask()
96 const uint16_t offset = segment.vertexLength; in setMask()
103 segment.vertexLength += vertexLength; in setMask()
H A Dcircle_bucket.cpp43 constexpr const uint16_t vertexLength = 4; in addFeature() local
56 …if (segments.empty() || segments.back().vertexLength + vertexLength > std::numeric_limits<uint16_t… in addFeature()
76 assert(segment.vertexLength <= std::numeric_limits<uint16_t>::max()); in addFeature()
77 uint16_t index = segment.vertexLength; in addFeature()
84 segment.vertexLength += vertexLength; in addFeature()
H A Dfill_extrusion_bucket.cpp70 triangleSegments.back().vertexLength + (5 * (totalVertices - 1) + 1) > in addFeature()
76 assert(triangleSegment.vertexLength <= std::numeric_limits<uint16_t>::max()); in addFeature()
77 uint16_t triangleIndex = triangleSegment.vertexLength; in addFeature()
125 triangleSegment.vertexLength += 4; in addFeature()
141 triangleSegment.vertexLength += totalVertices; in addFeature()
H A Dline_bucket.cpp378 …if (segments.empty() || segments.back().vertexLength + vertexCount > std::numeric_limits<uint16_t>… in addGeometry()
383 assert(segment.vertexLength <= std::numeric_limits<uint16_t>::max()); in addGeometry()
384 uint16_t index = segment.vertexLength; in addGeometry()
390 segment.vertexLength += vertexCount; in addGeometry()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/layout/
H A Dsymbol_layout.cpp499 constexpr const uint16_t vertexLength = 4; in addSymbol() local
507 …if (buffer.segments.empty() || buffer.segments.back().vertexLength + vertexLength > std::numeric_l… in addSymbol()
514 assert(segment.vertexLength <= std::numeric_limits<uint16_t>::max()); in addSymbol()
515 uint16_t index = segment.vertexLength; in addSymbol()
541 segment.vertexLength += vertexLength; in addSymbol()
568 static constexpr std::size_t vertexLength = 4; in addToDebugBuffers() local
571 …sionBuffer.segments.empty() || collisionBuffer.segments.back().vertexLength + vertexLength > std::… in addToDebugBuffers()
577 uint16_t index = segment.vertexLength; in addToDebugBuffers()
602 segment.vertexLength += vertexLength; in addToDebugBuffers()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/programs/
H A Dsegment.hpp21 vertexLength(vertexLength_), in Segment()
27 std::size_t vertexLength; member in mbgl::Segment