| 259 | } |
| 260 | |
| 261 | FORCE_INLINE float ReadNormalizedHeight(const Color32& raw) |
| 262 | { |
| 263 | const uint16 quantizedHeight = raw.R | (raw.G << 8); |
| 264 | const float normalizedHeight = (float)quantizedHeight / MAX_uint16; |
| 265 | return normalizedHeight; |
| 266 | } |
| 267 | |
| 268 | FORCE_INLINE bool ReadIsHole(const Color32& raw) |
| 269 | { |
no outgoing calls
no test coverage detected