File tree Expand file tree Collapse file tree 3 files changed +12
-10
lines changed
Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -569,13 +569,14 @@ void Map::setTileLodZoomShift(double shift) {
569569
570570double Map::getTileLodZoomShift () const {
571571 return impl->tileLodZoomShift ;
572+ }
572573
573- ClientOptions Map::getClientOptions () const {
574- return impl->fileSource ? impl->fileSource ->getClientOptions () : ClientOptions ();
575- }
574+ ClientOptions Map::getClientOptions () const {
575+ return impl->fileSource ? impl->fileSource ->getClientOptions () : ClientOptions ();
576+ }
576577
577- const std::unique_ptr<util::ActionJournal>& Map::getActionJournal () {
578- return impl->actionJournal ;
579- }
578+ const std::unique_ptr<util::ActionJournal>& Map::getActionJournal () {
579+ return impl->actionJournal ;
580+ }
580581
581582} // namespace mbgl
Original file line number Diff line number Diff line change @@ -195,10 +195,10 @@ std::unique_ptr<RenderTree> RenderOrchestrator::createRenderTree(
195195 .glyphManager = glyphManager,
196196 .prefetchZoomDelta = updateParameters->prefetchZoomDelta ,
197197 .threadPool = threadPool,
198- .updateParameters ->tileLodMinRadius ,
199- .updateParameters ->tileLodScale ,
200- .updateParameters ->tileLodPitchThreshold ,
201- .updateParameters ->tileLodZoomShift ,
198+ .tileLodMinRadius = updateParameters->tileLodMinRadius ,
199+ .tileLodScale = updateParameters->tileLodScale ,
200+ .tileLodPitchThreshold = updateParameters->tileLodPitchThreshold ,
201+ .tileLodZoomShift = updateParameters->tileLodZoomShift ,
202202 .dynamicTextureAtlas = dynamicTextureAtlas};
203203
204204 glyphManager->setURL (updateParameters->glyphURL );
Original file line number Diff line number Diff line change 1414#include < mbgl/renderer/render_static_data.hpp>
1515#include < mbgl/renderer/render_tree.hpp>
1616#include < mbgl/renderer/update_parameters.hpp>
17+ #include < mbgl/shaders/program_parameters.hpp>
1718#include < mbgl/util/convert.hpp>
1819#include < mbgl/util/string.hpp>
1920#include < mbgl/util/logging.hpp>
You can’t perform that action at this time.
0 commit comments