summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
...
* | [core] add continuous rendering test that terminates once it settles downKonstantin Käfer2016-11-091-0/+59
| | | | | | | | This is to test that continuous mode stops rerendering once no further changes are needed, i.e. to test the absence of "busy rendering".
* | [core] don't assign clip IDs to tiles that aren't renderedKonstantin Käfer2016-11-084-0/+30
| |
* | [core] Introduce gl::Program templateJohn Firebaugh2016-11-081-20/+8
| |
* | [core] remove gl.hpp from all headers that don't need itKonstantin Käfer2016-11-041-1/+0
| |
* | [core] add more detail to invalid metrics error in createSpriteImageMike Morris2016-11-041-6/+91
| |
* | [linux] Use OSMesa when running Node testsBruno de Oliveira Abinader2016-11-041-1/+1
| |
* | [core] Set bucket segments to initialize emptyBruno de Oliveira Abinader2016-11-021-0/+41
| |
* | [core] convert GlyphAtlas to use managed texture handlingKonstantin Käfer2016-11-011-1/+1
| |
* | [core] convert SpriteAtlas to use managed texture handlingKonstantin Käfer2016-11-011-38/+30
| |
* | Revert "[core] Don't use GL_LINEAR if panning w/o rotation nor pitch"Bruno de Oliveira Abinader2016-11-011-16/+0
| | | | | | | | This reverts commit a70bfd89108cf1aef75181819ae43e550a69255e.
* | [core] Cleanup TransformState::getIntegerZoomBruno de Oliveira Abinader2016-10-311-0/+23
| |
* | [core] Don't use GL_LINEAR if panning w/o rotation nor pitchBruno de Oliveira Abinader2016-10-311-0/+16
| |
* | [core] Use VAOs internallyJohn Firebaugh2016-10-281-7/+0
| |
* | [core] Modern C++ bindings for OpenGLJohn Firebaugh2016-10-281-7/+5
| |
* | [core] change std::array<uint16_t, 2> to mbgl::SizeKonstantin Käfer2016-10-2718-136/+134
| |
* | [core] don't load tiles from sources that aren't usedKonstantin Käfer2016-10-271-0/+48
|/
* [core] move gl::Context to Backend and refactor ViewKonstantin Käfer2016-10-2512-141/+111
|
* [core] separate Backend from View for headless renderingKonstantin Käfer2016-10-2510-66/+93
|
* [core] fixup formattingIvo van Dongen2016-10-211-11/+11
|
* [core] [node] pass thread pool impl to Map constructorMike Morris2016-10-2013-36/+57
| | | | | | | Updates mbgl::Map constructor usage everywhere Adds NodeThreadPool implementation using AsyncQueue to call Nan::AsyncQueueWorker from main thread
* [core] reload geojson source on url changeIvo van Dongen2016-10-202-0/+39
|
* [core] Fix SymbolAnnotation coordinate system conversionsBruno de Oliveira Abinader2016-10-191-10/+19
|
* [core] TileCoordinate::fromLatLng no longer depens on TransformStateBruno de Oliveira Abinader2016-10-191-2/+2
|
* [core] Optimize OfflineDownload::ensureResource (#6707)Tore Halset2016-10-171-0/+53
| | | Add `OfflineDatabase::hasRegionResource`, for use when the actual contents are not needed by the caller, avoiding IO and decompression costs.
* [core] Skip duplicated IDs when querying point annotationsBruno de Oliveira Abinader2016-10-121-0/+10
|
* [test] Added TileCoordinate testsBruno de Oliveira Abinader2016-10-111-0/+92
|
* [test] Added Annotations.VisibleFeatures testBruno de Oliveira Abinader2016-10-111-0/+32
| | | | | This provides a means of testing cases where an updated geometry tile would return wrong results for `queryRenderedFeatures`.
* [core] Ignore placement for symbol annotationsBruno de Oliveira Abinader2016-10-111-0/+25
|
* [core] Fix Map::setLatLng behaviorBruno de Oliveira Abinader2016-10-071-0/+16
| | | | | We were erroneously assigning a value to optional<ScreenCoordinate> (null island), causing it to be a valid anchor for Transform::easeTo.
* [macos,ios] initialize util::RunLoop in SDK rather than by defaultKonstantin Käfer2016-10-062-0/+4
|
* [core] Refactor BufferJohn Firebaugh2016-10-051-7/+0
|
* [core] Tiles that error on load are not renderableJohn Firebaugh2016-10-052-0/+94
|
* [tests] Add unit tests for query features fitersThiago Marcos P. Santos2016-10-052-0/+123
|
* [core] remove Raster object in favor of a more low-level Texture objectKonstantin Käfer2016-10-041-2/+1
|
* [core] Preserve non-access_token query parameters in canonicalizeTileURLSam Matthews2016-10-031-0/+9
|
* [build] add back -WerrorKonstantin Käfer2016-09-301-1/+1
|
* [core] LocalFileSource implementation and testsIvo van Dongen2016-09-301-0/+124
|
* [core] introduces types for GL objectsKonstantin Käfer2016-09-291-1/+1
|
* [core] rename VAO => VertexArray, FBO => FramebufferKonstantin Käfer2016-09-291-1/+1
|
* [test] add .test.cpp suffix to test case filesKonstantin Käfer2016-09-2859-0/+0
|
* [core] merge gl::ObjectStore into gl::ContextKonstantin Käfer2016-09-272-33/+32
|
* [core] rename gl::Config to gl::ContextKonstantin Käfer2016-09-272-10/+10
|
* [core] move GL value accessors to gl::value namespaceKonstantin Käfer2016-09-272-14/+13
|
* [core] add ability to render to offscreen texturesKonstantin Käfer2016-09-275-0/+153
|
* [test] Show error message when expected file does not existKonstantin Käfer2016-09-271-2/+15
|
* [core] Don't allow OfflineDownload to flood the request queueJohn Firebaugh2016-09-262-0/+26
|
* [core] Source-driven attributionMinh Nguyễn2016-09-262-1/+45
| | | | | | Implemented observer callbacks so the style knows when the source’s attribution changes and the map knows when the style’s attribution changes. Also implemented a getter for a tile source’s attribution. Fixes #2723.
* [core] Trigger Update::RecalculateStyle when toggling layer visibilityBruno de Oliveira Abinader2016-09-261-2/+15
|
* [tests] Add tests for Map::[add|remove]ImageThiago Marcos P. Santos2016-09-224-0/+58
|
* [core] allow offline region metadata to be updated (#6338)Molly Lloyd2016-09-201-0/+13
|