2013-11-14 23:11:21 -08:00
|
|
|
#include "bench_framework.hpp"
|
|
|
|
#include <mapnik/image_util.hpp>
|
|
|
|
|
|
|
|
class test : public benchmark::test_case
|
|
|
|
{
|
2015-01-21 20:31:02 -06:00
|
|
|
mapnik::image_rgba8 im_;
|
2013-11-14 23:11:21 -08:00
|
|
|
public:
|
|
|
|
test(mapnik::parameters const& params)
|
|
|
|
: test_case(params),
|
|
|
|
im_(256,256) {}
|
|
|
|
bool validate() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2014-12-12 11:59:45 -05:00
|
|
|
bool operator()() const
|
2013-11-14 23:11:21 -08:00
|
|
|
{
|
|
|
|
std::string out;
|
|
|
|
for (std::size_t i=0;i<iterations_;++i) {
|
|
|
|
out.clear();
|
2014-05-05 10:07:57 -07:00
|
|
|
out = mapnik::save_to_string(im_,"png8:m=h:z=1");
|
2013-11-14 23:11:21 -08:00
|
|
|
}
|
|
|
|
}
|
2014-12-12 11:59:45 -05:00
|
|
|
return true;
|
2013-11-14 23:11:21 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
BENCHMARK(test,"encoding blank png")
|