| 28 | namespace |
| 29 | { |
| 30 | struct LevelStackEntry |
| 31 | { |
| 32 | LevelStackEntry(int x_, int y_, int index_) : x(x_), y(y_), index(index_) {} |
| 33 | int x; |
| 34 | int y; |
| 35 | int index; |
| 36 | }; |
| 37 | } // namespace |
| 38 | |
| 39 | static void calculateDistanceField(rcCompactHeightfield& chf, unsigned short* src, unsigned short& maxDist) |
no outgoing calls
no test coverage detected