| 406 | } |
| 407 | |
| 408 | void RuleDrawer::ProcessPointStyle(FeatureType & f, Stylist const & s, TInsertShapeFn const & insertShape) |
| 409 | { |
| 410 | if (IsDiscardCustomFeature(f.GetID()) || IsHiddenChristmasFeature(f)) |
| 411 | return; |
| 412 | |
| 413 | ApplyPointFeature apply(m_context->GetTileKey(), insertShape, f, s.GetCaptionDescription()); |
| 414 | apply.ProcessPointRules(s.m_symbolRule, s.m_captionRule, s.m_houseNumberRule, f.GetCenter(), |
| 415 | m_context->GetTextureManager()); |
| 416 | } |
| 417 | |
| 418 | void RuleDrawer::operator()(FeatureType & f) |
| 419 | { |
nothing calls this directly
no test coverage detected