| 339 | |
| 340 | using RangeT = std::pair<int, int>; |
| 341 | static RangeT GetScaleRange(uint32_t type) { return feature::GetDrawableScaleRange(type); } |
| 342 | |
| 343 | static bool IsEmptyRange(RangeT const & range) { return range.first == -1; } |
| 344 | bool IsBadRange(RangeT const & range) const { return (range.first > m_upScale || range.second < m_lowScale); } |
no test coverage detected