Home
last modified time | relevance | path

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

/dports/games/spring/spring_98.0/rts/Game/
H A DInMapDraw.cpp277 void CInMapDraw::GetPoints(std::vector<PointMarker>& points, int pointsSizeMax, const std::list<int… in GetPoints() argument
279 pointsSizeMax = std::min(pointsSizeMax, inMapDrawerModel->GetNumPoints()); in GetPoints()
281 points.reserve(pointsSizeMax); in GetPoints()
287 …for (size_t y = 0; (y < inMapDrawerModel->GetDrawQuadY()) && ((int)points.size() < pointsSizeMax);… in GetPoints()
288 …for (size_t x = 0; (x < inMapDrawerModel->GetDrawQuadX()) && ((int)points.size() < pointsSizeMax);… in GetPoints()
291 …ointsInt->begin(); (point != pointsInt->end()) && ((int)points.size() < pointsSizeMax); ++point) { in GetPoints()
H A DInMapDraw.h42 void GetPoints(std::vector<PointMarker>& points, int pointsSizeMax, const std::list<int>& teamIDs);