* Compose two 1D hashes into 2D hash. */
| 411 | * Compose two 1D hashes into 2D hash. |
| 412 | */ |
| 413 | static inline uint ComposeTileHash(uint hx, uint hy) |
| 414 | { |
| 415 | return hx | hy << TILE_HASH_BITS; |
| 416 | } |
| 417 | |
| 418 | /** |
| 419 | * Compute hash for tile coordinate. |
no outgoing calls
no test coverage detected