2014-06-19 17:21:57 -07:00
|
|
|
#include "bench_framework.hpp"
|
|
|
|
#include <mapnik/font_engine_freetype.hpp>
|
|
|
|
#include <boost/format.hpp>
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
|
|
|
|
class test : public benchmark::test_case
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
test(mapnik::parameters const& params)
|
|
|
|
: test_case(params) {}
|
|
|
|
bool validate() const
|
|
|
|
{
|
|
|
|
return mapnik::freetype_engine::register_fonts("./fonts", true);
|
|
|
|
}
|
2014-12-12 11:59:45 -05:00
|
|
|
bool operator()() const
|
2014-06-19 17:21:57 -07:00
|
|
|
{
|
|
|
|
unsigned long count = 0;
|
|
|
|
for (unsigned i=0;i<iterations_;++i)
|
|
|
|
{
|
|
|
|
mapnik::freetype_engine::register_fonts("./fonts", true);
|
|
|
|
count++;
|
|
|
|
}
|
2014-12-12 11:59:45 -05:00
|
|
|
return true;
|
2014-06-19 17:21:57 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-01-21 17:57:16 -06:00
|
|
|
BENCHMARK(test,"font registration")
|