| 476 | } |
| 477 | |
| 478 | uint32_t FeatureParams::FindType(uint32_t comp, uint8_t level) const |
| 479 | { |
| 480 | for (uint32_t const type : m_types) |
| 481 | if (ftype::Trunc(type, level) == comp) |
| 482 | return type; |
| 483 | return ftype::GetEmptyValue(); |
| 484 | } |
| 485 | |
| 486 | bool FeatureParams::IsValid() const |
| 487 | { |
no test coverage detected