| 85 | } |
| 86 | |
| 87 | static inline uint GetViewportHash(int x, int y) |
| 88 | { |
| 89 | return GetViewportHashX(x) + GetViewportHashY(y); |
| 90 | } |
| 91 | |
| 92 | /* Maximum size until hash repeats */ |
| 93 | static const uint GEN_HASHX_SIZE = 1 << (GEN_HASHX_BUCKET_BITS + GEN_HASHX_BITS + ZOOM_BASE_SHIFT); |
no test coverage detected