fix msvs 2010 linking - refs #260
This commit is contained in:
parent
468ead3370
commit
5a1995e051
1 changed files with 16 additions and 0 deletions
|
@ -29,6 +29,10 @@
|
|||
#include <boost/optional.hpp>
|
||||
#include <mapnik/config.hpp>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#include <mapnik/image_data.hpp>
|
||||
#endif
|
||||
|
||||
namespace mapnik
|
||||
{
|
||||
|
||||
|
@ -67,6 +71,18 @@ MAPNIK_DECL void scale_image_agg(Image & target,
|
|||
double y_off_f=0,
|
||||
double filter_radius=2);
|
||||
|
||||
#ifdef _MSC_VER
|
||||
MAPNIK_DECL void scale_image_agg<mapnik::image_data_32>(
|
||||
mapnik::image_data_32 & target,
|
||||
mapnik::image_data_32 &const source,
|
||||
scaling_method_e scaling_method,
|
||||
double image_ratio_x,
|
||||
double image_ratio_y,
|
||||
double x_off_f=0,
|
||||
double y_off_f=0,
|
||||
double filter_radius=2);
|
||||
#endif
|
||||
|
||||
template <typename Image>
|
||||
void scale_image_bilinear_old(Image & target,
|
||||
Image const& source,
|
||||
|
|
Loading…
Add table
Reference in a new issue