allow cairo compile
This commit is contained in:
parent
ad16d5da33
commit
2f65a7612d
2 changed files with 16 additions and 0 deletions
|
@ -80,6 +80,8 @@ public:
|
|||
void start_map_processing(Map const& map);
|
||||
void start_layer_processing(layer const& lay, box2d<double> const& query_extent);
|
||||
void end_layer_processing(layer const& lay);
|
||||
void start_style_processing(feature_type_style const& st);
|
||||
void end_style_processing(feature_type_style const& st);
|
||||
void process(point_symbolizer const& sym,
|
||||
mapnik::feature_ptr const& feature,
|
||||
proj_transform const& prj_trans);
|
||||
|
|
|
@ -721,6 +721,20 @@ void cairo_renderer_base::start_map_processing(Map const& map)
|
|||
#endif
|
||||
}
|
||||
|
||||
void cairo_renderer_base::start_style_processing(feature_type_style const& st)
|
||||
{
|
||||
#ifdef MAPNIK_DEBUG
|
||||
std::clog << "start style processing\n";
|
||||
#endif
|
||||
}
|
||||
|
||||
void cairo_renderer_base::end_style_processing(feature_type_style const& st)
|
||||
{
|
||||
#ifdef MAPNIK_DEBUG
|
||||
std::clog << "end style processing\n";
|
||||
#endif
|
||||
}
|
||||
|
||||
void cairo_renderer_base::process(polygon_symbolizer const& sym,
|
||||
mapnik::feature_ptr const& feature,
|
||||
proj_transform const& prj_trans)
|
||||
|
|
Loading…
Reference in a new issue