Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [qt] Fix compilation error | Thiago Marcos P. Santos | 2020-02-20 | 1 | -1/+1 |
| | | | | GCC complains about this variable being potentially not initialized. | ||||
* | [build] Move the `next` buildsystem to the root | Thiago Marcos P. Santos | 2020-02-07 | 1 | -0/+214 |
| | | | | | | | | This will make the `next` buildsystem no longer the `next`, but the `actual`. The idea is to simplify the build, removing scripts, to make the platform buildsystem generated by CMake more compatible with IDEs and make development more streamlined. It will also make cross compilation easier. | ||||
* | [core] Add platform::setCurrentThreadPriority(double) | Alexander Shalamov | 2020-02-06 | 1 | -0/+2 |
| | |||||
* | [build] Adding a build flag to build without GL if needed (#16120) | Thomas Moenicke | 2020-02-03 | 1 | -1/+1 |
| | | | | | | * [build] Adding a build flag to build without GL if needed * [build] Moving custom layer to mbgl/gl | ||||
* | [core] Pass std::shared_ptr<UpdateParameters> to the render orchestrator | Mikhail Pozdnyakov | 2020-01-22 | 1 | -1/+1 |
| | | | | So that it can retain ownership of the given parameters. | ||||
* | [qt] Use new FileSourceManager interface | Alexander Shalamov | 2020-01-13 | 3 | -7/+17 |
| | |||||
* | [qt] Fix usage of QNetworkReply after deletion | Mikhail Pozdnyakov | 2019-12-17 | 2 | -4/+5 |
| | |||||
* | [core] Remove Map::cycleDebugOptions | Bruno de Oliveira Abinader | 2019-12-04 | 3 | -14/+0 |
| | |||||
* | [android][node][qt] Update platform code for style::Layer::setProperty() | Mikhail Pozdnyakov | 2019-12-03 | 1 | -2/+2 |
| | |||||
* | [qt] Fix code formatting | Thiago Marcos P. Santos | 2019-11-11 | 1 | -15/+13 |
| | |||||
* | [qt] Make image source url update possible | Tadej Novak | 2019-11-11 | 1 | -4/+10 |
| | |||||
* | [core,android,darwin,qt] Add fields related to feature-state | Juha Alanen | 2019-10-28 | 2 | -2/+2 |
| | | | | | Move the fields from geometry.hpp/feature.hpp as they are not part of the GeoJSON specification. | ||||
* | [core] Introduce Scheduler::makeWeakPtr() | Mikhail Pozdnyakov | 2019-10-09 | 1 | -0/+2 |
| | |||||
* | [core] Decouple Scheduler interface from actor model | Mikhail Pozdnyakov | 2019-10-04 | 2 | -8/+7 |
| | | | | So that it is possible to schedule normal `std::function` and use `mapbox::base::WeakPtr`. | ||||
* | [core][android][darwin] Move number format to i18n | Alexander Shalamov | 2019-09-26 | 1 | -0/+0 |
| | |||||
* | [core] Fix performance-move-const-arg | Thiago Marcos P. Santos | 2019-09-25 | 2 | -9/+8 |
| | |||||
* | [build] Remove Qt builds from legacy buildsystem | Thiago Marcos P. Santos | 2019-09-17 | 3 | -338/+0 |
| | |||||
* | [build] Remove Qt test dependency on core | Thiago Marcos P. Santos | 2019-09-17 | 2 | -7/+13 |
| | | | | | This test is testing the Qt bindings and should only link with QMapboxGL. | ||||
* | [build] Make the default styles part of GL Native | Thiago Marcos P. Santos | 2019-09-17 | 1 | -1/+0 |
| | | | | | The reason is applications using it, like GLFW, don't need to depend on code inside platform/default. | ||||
* | [build] Cosmetics on vendor packages | Thiago Marcos P. Santos | 2019-09-17 | 1 | -2/+2 |
| | | | | | | - Add include guards on all the files - Add a vendor package for sqlite and gtest - Use relative paths to all the files | ||||
* | [core] Update MapObserver::onDidFinishRenderingFrame() API | Mikhail Pozdnyakov | 2019-09-12 | 2 | -3/+3 |
| | |||||
* | [core][qt] Check if QFont supports glyph and adjust backing image width | Alexander Shalamov | 2019-08-28 | 1 | -9/+16 |
| | | | | | | | - Don't rasterize glyphs if font does not support requested code point - Render symbols at hardcoded baseline, so that locally rasterized glyphs align better with server side generated fonts. - Resize backing QImage width to be at least 24px | ||||
* | [core] Remove programCacheDir parameter from ProgramParameters | Ander Conselvan de Oliveira | 2019-08-27 | 1 | -1/+1 |
| | | | | | | Binary shader support has been removed in commit c2f974f2a573 ([core] Remove binary shader support). This left-over parameter is not used anywhere anymore. | ||||
* | [core] Export symbol placement update status from MapObserver | Mikhail Pozdnyakov | 2019-08-23 | 3 | -4/+4 |
| | |||||
* | [core] Add number-format expression | Juha Alanen | 2019-06-27 | 2 | -0/+27 |
| | |||||
* | [core] option to perform platform specific operations when ↵ | Łukasz Paczos | 2019-05-22 | 1 | -0/+7 |
| | | | | creating/destroying core threads | ||||
* | [core] Refactor HeadlessFrontend/Backend: GL separation and factory (#14692) | Aleksandar Stojiljkovic | 2019-05-21 | 1 | -2/+4 |
| | | | | | Refactor out HeadlessFrontend and HeadlessBackend gl independent code to gfx. Define gl::HeadlessBackend as subclass, instantiated by gfx::HeadlessBackend static factory method. GL dependent tests are still using gl::HeadlessBackend directly (not through gfx). | ||||
* | [core] Make the BackgroundScheduler a singleton | Thiago Marcos P. Santos | 2019-05-10 | 6 | -17/+4 |
| | | | | | | | | | | - Do not carry it over everywhere as parameter, it is a shared instance anyway and the lifecycle is pretty much the app lifecycle from the moment we instantiate a map. - Rename to BackgroundScheduler because it is a Scheduler that will do tasks in the background, we don't make assumptions if it is a thread pool or a single thread. - Most importantly, remove the dependency from `core` on `platform`. | ||||
* | [core] refactor ThreadLocal backend | Konstantin Käfer | 2019-04-08 | 1 | -27/+17 |
| | |||||
* | [core] move GLContextMode to RendererBackend | Konstantin Käfer | 2019-04-05 | 4 | -6/+8 |
| | |||||
* | [core] refactor RendererBackend | Konstantin Käfer | 2019-04-05 | 6 | -38/+60 |
| | |||||
* | [core] move BackendScope to gfx namespace | Konstantin Käfer | 2019-04-05 | 4 | -5/+4 |
| | |||||
* | [core] Include pixelRatio property in MapOptions | Sudarsana Babu Nagineni | 2019-03-28 | 1 | -3/+5 |
| | | | | Move pixelRatio property from Map constructor to MapOptions. | ||||
* | [core] Add setter/getter for size property in MapOptions | Sudarsana Babu Nagineni | 2019-03-28 | 1 | -4/+5 |
| | |||||
* | [core] Add interface to change the orientation through MapOptions | Sudarsana Babu Nagineni | 2019-03-28 | 1 | -1/+1 |
| | |||||
* | [core] Fix signature of fluent interface setters | Bruno de Oliveira Abinader | 2019-03-23 | 1 | -4/+4 |
| | |||||
* | [core] Remove file source from public Map ctor | Bruno de Oliveira Abinader | 2019-03-20 | 3 | -66/+34 |
| | |||||
* | [core] Group Map LatLngBounds, min and max zoom methods | Ander Conselvan de Oliveira | 2019-03-14 | 1 | -2/+2 |
| | | | | | | | | Group bounds, minimum and maximum zoom related methods together using the new BoundOptions. v2: Document that getBounds() initializes all optional fields. - Add test for getBounds() on a map with default values. | ||||
* | [core] Get FileSource via UpdateParameters in Renderer::Impl | Bruno de Oliveira Abinader | 2019-03-13 | 4 | -9/+3 |
| | |||||
* | [core] Don't use exceptions in MapObserver::onDidFailLoadingMap | Ander Conselvan de Oliveira | 2019-03-13 | 2 | -18/+16 |
| | | | | | | | Using different exception pointers to specify the loading failure makes an awkward API. Most users rethrow the exception only to figure out what type of error happened so it can be reported properly. So replace the exception pointer with a enum an string description of the failure. | ||||
* | [Qt] Fix race when locking a FileSource | Thiago Marcos P. Santos | 2019-03-08 | 1 | -2/+5 |
| | | | | | | We were returning the FileSource, it could have expired already. We _need_ to check if the lock() on the weak pointer worked before returning. | ||||
* | [core] Add MapOptions to define properties of Map | Sudarsana Babu Nagineni | 2019-03-08 | 1 | -3/+6 |
| | | | | | | To simplify the Map constructor, introduce MapOptions interface to define the properties that can be set on a Map. | ||||
* | [qt] Also use the base API URL as key for sharing the cache. | Thiago Marcos P. Santos | 2019-03-04 | 1 | -2/+3 |
| | | | | | Otherwise we will have a URL pointing to different servers and potentially different data. | ||||
* | [core] Remove map coordinate setters/getters | Bruno de Oliveira Abinader | 2019-03-04 | 1 | -6/+8 |
| | |||||
* | [core] Transform{State}: s/angle/bearing/ | Bruno de Oliveira Abinader | 2019-03-04 | 2 | -6/+6 |
| | |||||
* | [core] Remove map bearing setters/getters | Bruno de Oliveira Abinader | 2019-03-04 | 1 | -3/+7 |
| | |||||
* | [core] Remove map pitch setters/getters | Bruno de Oliveira Abinader | 2019-03-04 | 1 | -2/+2 |
| | |||||
* | [core] Remove map zoom setters/getters | Bruno de Oliveira Abinader | 2019-03-04 | 1 | -6/+8 |
| | |||||
* | [core] Added Map::pitchBy() | Bruno de Oliveira Abinader | 2019-03-04 | 3 | -1/+7 |
| | |||||
* | [core] Added Map::scaleBy() | Bruno de Oliveira Abinader | 2019-03-04 | 1 | -1/+1 |
| |