| 242 | } |
| 243 | |
| 244 | bool IsDrawableForIndexClassifOnly(TypesHolder const & types, int level) |
| 245 | { |
| 246 | Classificator const & c = classif(); |
| 247 | for (uint32_t t : types) |
| 248 | { |
| 249 | if (c.GetObject(t)->IsDrawable(level)) |
| 250 | return true; |
| 251 | |
| 252 | if (level == GetNondrawableStandaloneIndexScale(t)) |
| 253 | return true; |
| 254 | } |
| 255 | |
| 256 | return false; |
| 257 | } |
| 258 | } // namespace |
| 259 | |
| 260 | bool IsDrawableForIndex(FeatureType & ft, int level) |
no test coverage detected