| 149 | } |
| 150 | |
| 151 | void Map::MapColorSet::adjustColorPriorities(int first, int last) |
| 152 | { |
| 153 | // TODO: delete or update RenderStates with these colors |
| 154 | for (int i = first; i < last; ++i) |
| 155 | colors[i]->setPriority(i); |
| 156 | } |
| 157 | |
| 158 | // This algorithm tries to maintain the relative order of colors. |
| 159 | MapColorMap Map::MapColorSet::importSet(const Map::MapColorSet& other, std::vector< bool >* filter, Map* map) |
nothing calls this directly
no test coverage detected