Compute hash for vehicle coord */
| 75 | |
| 76 | /* Compute hash for vehicle coord */ |
| 77 | static inline uint GetViewportHashX(int x) |
| 78 | { |
| 79 | return GB(x, GEN_HASHX_BUCKET_BITS + ZOOM_BASE_SHIFT, GEN_HASHX_BITS); |
| 80 | } |
| 81 | |
| 82 | static inline uint GetViewportHashY(int y) |
| 83 | { |
no test coverage detected