diff options
author | Ivo van Dongen <info@ivovandongen.nl> | 2017-06-28 14:50:55 -0700 |
---|---|---|
committer | Ivo van Dongen <ivovandongen@users.noreply.github.com> | 2017-07-18 10:45:12 +0200 |
commit | 2e9fb06941720f7cc22fa8d8d54aa2d0b3fd71c0 (patch) | |
tree | 522a3efbd982bf7b15179b8948c2c8368346156e /benchmark/src | |
parent | 8401325a82a5affd9f4fe2348d065d8aa0aa0bc4 (diff) | |
download | qtlocation-mapboxgl-2e9fb06941720f7cc22fa8d8d54aa2d0b3fd71c0.tar.gz |
[benchmark] rendering interface changes
Diffstat (limited to 'benchmark/src')
-rw-r--r-- | benchmark/src/mbgl/benchmark/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/src/mbgl/benchmark/util.cpp b/benchmark/src/mbgl/benchmark/util.cpp index 87d68ea729..a56279886f 100644 --- a/benchmark/src/mbgl/benchmark/util.cpp +++ b/benchmark/src/mbgl/benchmark/util.cpp @@ -11,7 +11,7 @@ namespace benchmark { void render(Map& map, OffscreenView& view) { PremultipliedImage result; - map.renderStill(view, [&](std::exception_ptr) { + map.renderStill([&](std::exception_ptr) { result = view.readStillImage(); }); |