restore agg renderer clip_box, accidentally disabled in 21d05444 - refs #1075

This commit is contained in:
Dane Springmeyer 2012-02-10 15:14:15 -08:00
parent 75e264a594
commit 0acd2137b8

View file

@ -189,8 +189,8 @@ void agg_renderer<T>::start_map_processing(Map const& map)
#ifdef MAPNIK_DEBUG
std::clog << "start map processing bbox="
<< map.get_current_extent() << "\n";
ras_ptr->clip_box(0,0,width_,height_);
#endif
ras_ptr->clip_box(0,0,width_,height_);
}
template <typename T>