diff options
Diffstat (limited to 'test/perf-geoData.cpp')
-rw-r--r-- | test/perf-geoData.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/perf-geoData.cpp b/test/perf-geoData.cpp index 4fed632..4d4505e 100644 --- a/test/perf-geoData.cpp +++ b/test/perf-geoData.cpp @@ -8,17 +8,17 @@ namespace { terrain_findPoint(benchmark::State & state) { for (auto _ : state) { - benchmark::DoNotOptimize(tm.findPoint({315555, 495556})); + benchmark::DoNotOptimize(tm.findPoint({315555000, 495556000})); } } void terrain_walk(benchmark::State & state) { - const glm::vec2 point {310001, 490000}; + const glm::vec2 point {310001000, 490000000}; const GeoData::PointFace start {point, tm.findPoint(point)}; for (auto _ : state) { - tm.walk(start, {319999, 500000}, [](auto f) { + tm.walk(start, {319999000, 500000000}, [](auto f) { benchmark::DoNotOptimize(f); }); } |