| 36 | uint32_t constexpr kInvalidOffset = numeric_limits<uint32_t>::max(); |
| 37 | |
| 38 | bool IsRealGeomOffset(uint32_t offset) |
| 39 | { |
| 40 | return (offset != kInvalidOffset && offset != kGeomOffsetFallback); |
| 41 | } |
| 42 | |
| 43 | // Get an index of inner geometry scale range. |
| 44 | // @param[in] scale: |
no outgoing calls
no test coverage detected