Disable rendering of TextSymbolizer and ShieldSymbolizer.
This avoids breaking compiles with the next changes.
This commit is contained in:
parent
e0b5e15507
commit
fdd58903f9
5 changed files with 10 additions and 3 deletions
|
@ -45,6 +45,7 @@ void agg_renderer<T>::process(shield_symbolizer const& sym,
|
|||
Feature const& feature,
|
||||
proj_transform const& prj_trans)
|
||||
{
|
||||
#if 0
|
||||
typedef coord_transform2<CoordTransform,geometry_type> path_type;
|
||||
|
||||
|
||||
|
@ -264,6 +265,7 @@ void agg_renderer<T>::process(shield_symbolizer const& sym,
|
|||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -33,8 +33,7 @@ void agg_renderer<T>::process(text_symbolizer const& sym,
|
|||
Feature const& feature,
|
||||
proj_transform const& prj_trans)
|
||||
{
|
||||
|
||||
|
||||
#if 0
|
||||
// Use a boost::ptr_vector here instread of std::vector?
|
||||
std::vector<geometry_type*> geometries_to_process;
|
||||
unsigned num_geom = feature.num_geometries();
|
||||
|
@ -176,6 +175,7 @@ void agg_renderer<T>::process(text_symbolizer const& sym,
|
|||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
template void agg_renderer<image_32>::process(text_symbolizer const&,
|
||||
|
|
|
@ -1465,6 +1465,7 @@ void cairo_renderer_base::process(text_symbolizer const& sym,
|
|||
Feature const& feature,
|
||||
proj_transform const& prj_trans)
|
||||
{
|
||||
#if 0
|
||||
typedef coord_transform2<CoordTransform,geometry_type> path_type;
|
||||
|
||||
bool placement_found = false;
|
||||
|
@ -1579,6 +1580,7 @@ void cairo_renderer_base::process(text_symbolizer const& sym,
|
|||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
template class cairo_renderer<Cairo::Surface>;
|
||||
|
|
|
@ -44,6 +44,7 @@ void grid_renderer<T>::process(shield_symbolizer const& sym,
|
|||
Feature const& feature,
|
||||
proj_transform const& prj_trans)
|
||||
{
|
||||
#if 0
|
||||
typedef coord_transform2<CoordTransform,geometry_type> path_type;
|
||||
|
||||
bool placement_found = false;
|
||||
|
@ -237,7 +238,7 @@ void grid_renderer<T>::process(shield_symbolizer const& sym,
|
|||
}
|
||||
if (placement_found)
|
||||
pixmap_.add_feature(feature);
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
template void grid_renderer<grid>::process(shield_symbolizer const&,
|
||||
|
|
|
@ -33,6 +33,7 @@ void grid_renderer<T>::process(text_symbolizer const& sym,
|
|||
Feature const& feature,
|
||||
proj_transform const& prj_trans)
|
||||
{
|
||||
#if 0
|
||||
typedef coord_transform2<CoordTransform,geometry_type> path_type;
|
||||
|
||||
bool placement_found = false;
|
||||
|
@ -147,6 +148,7 @@ void grid_renderer<T>::process(text_symbolizer const& sym,
|
|||
}
|
||||
if (placement_found)
|
||||
pixmap_.add_feature(feature);
|
||||
#endif
|
||||
}
|
||||
|
||||
template void grid_renderer<grid>::process(text_symbolizer const&,
|
||||
|
|
Loading…
Reference in a new issue