summaryrefslogtreecommitdiff
path: root/test/api
Commit message (Collapse)AuthorAgeFilesLines
* [all] Push querySourceFeatures back out to MapJohn Firebaugh2017-05-021-7/+7
| | | | Once Source and RendererSource are split, Source will no longer have access to tiles.
* [all] Rationalize style::ImageJohn Firebaugh2017-04-242-20/+18
| | | | | | | A style has a collection of images, just as it has collections of sources and layers. * Name things appropriately * Use std::unique_ptr
* [android] use AAssetManager instead of libzipKonstantin Käfer2017-04-243-19/+0
|
* [core] Ensure that a BackendScope exists when doing GL callsKonstantin Käfer2017-03-236-0/+13
|
* [test] Fix polygon construction to compile with clang 3.9.xDane Springmeyer2017-03-091-9/+9
|
* [core] query source featuresIvo van Dongen2017-03-091-0/+41
|
* [core] Add support for queryRenderedFeatures filterAsheem Mamoowala2017-03-042-6/+25
|
* [core] private OffscreenView implementationKonstantin Käfer2017-02-276-10/+10
|
* [core] Add support for data-driven stylingJohn Firebaugh2017-02-021-7/+7
|
* [core] Assert valid range for color componentsJohn Firebaugh2016-11-291-16/+16
|
* [build] upgrade to variant 1.1.4 and dependenciesKonstantin Käfer2016-11-281-2/+2
|
* [build] move headless rendering files to platform/defaultKonstantin Käfer2016-11-226-12/+12
|
* [build] move default ThreadPool implementation to platform/defaultKonstantin Käfer2016-11-226-6/+6
|
* [test] Check all zoom levels in Annotations.SymbolAnnotationBruno de Oliveira Abinader2016-11-181-8/+5
|
* [test] Use shared headless displayBruno de Oliveira Abinader2016-11-176-14/+17
| | | | Prevents some OpenGL implementations from bailing out.
* [core] don't assign clip IDs to tiles that aren't renderedKonstantin Käfer2016-11-081-0/+29
|
* 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] Don't use GL_LINEAR if panning w/o rotation nor pitchBruno de Oliveira Abinader2016-10-311-0/+16
|
* [core] change std::array<uint16_t, 2> to mbgl::SizeKonstantin Käfer2016-10-276-23/+23
|
* [core] move gl::Context to Backend and refactor ViewKonstantin Käfer2016-10-256-49/+47
|
* [core] separate Backend from View for headless renderingKonstantin Käfer2016-10-256-28/+29
|
* [core] [node] pass thread pool impl to Map constructorMike Morris2016-10-206-9/+26
| | | | | | | Updates mbgl::Map constructor usage everywhere Adds NodeThreadPool implementation using AsyncQueue to call Nan::AsyncQueueWorker from main thread
* [core] Fix SymbolAnnotation coordinate system conversionsBruno de Oliveira Abinader2016-10-191-10/+19
|
* [core] Skip duplicated IDs when querying point annotationsBruno de Oliveira Abinader2016-10-121-0/+10
|
* [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
|
* [tests] Add unit tests for query features fitersThiago Marcos P. Santos2016-10-051-0/+62
|
* [test] add .test.cpp suffix to test case filesKonstantin Käfer2016-09-285-0/+0
|
* [core] Fix updates of line and fill annotationsJohn Firebaugh2016-08-291-0/+68
|
* [tests] Merge single test in set_style.cpp with other Map testsJohn Firebaugh2016-08-231-33/+0
|
* [core] set correct depth values for CustomLayer so compositing worksKonstantin Käfer2016-08-221-11/+34
|
* [tests] Include what we useThiago Marcos P. Santos2016-08-221-0/+1
|
* [tests] Add tests for shape overlays crossing the antimeridianJesse Bounds2016-08-191-0/+42
| | | | | | | | | | | | | | | | This adds two tests: AntimeridianAnnotationSmall: Test that a shape that is represented with +-180 longitudinal values is drawn spanning the antimeridian. In other words, it is rendered as a "small" shape as opposed to one that spans around the world to reach the other side of the antimeridian. This test is currently failing at the time of this commit. AntimeridianAnnotationLarge: Test that a shape that is represented with points that do not cross the +-180 boundary is rendered as a "large" shape. In other words, it is rendered by wrapping around the world to reach the other side of the meridian. This test is currently passing at the time of this commit.
* [core] Compare unsigned int to unsigned int to pass tidy check (#5986)Jesse Bounds2016-08-121-1/+1
|
* [core, android, ios, macos] Replaced getPointAnnotationsInBounds() w/ ↵Minh Nguyễn2016-08-121-0/+8
| | | | | | | queryPointAnnotations() (#5165) queryPointAnnotations() accepts a screen rectangle instead of a geographic bounding box, so marker hit testing works at the edges of a rotated, tilted map view. Fixes #5151.
* [build] unify naming of Makefile targetsKonstantin Käfer2016-08-051-0/+1
| | | | | `make foo` just builds `make run-foo` builds and runs
* [core] Fixed test build errorsmacos-v0.2.1macos-0.2.1Minh Nguyễn2016-07-191-15/+0
| | | | Missed this bad merge from #5729.
* Merge branch 'release-ios-v3.3.0'Minh Nguyễn2016-07-191-0/+15
|\
| * [core] Restored shape annotation z-orderMinh Nguyễn2016-07-181-0/+15
| | | | | | | | | | | | | | | | Shapes are once again always added to the top z-index. Fixes #5691. Cherry-picked from 74fe96d2617f870206ff358d7dfcafccf4e109bc.
* | [core] Restored shape annotation z-orderMinh Nguyễn2016-07-181-0/+15
| | | | | | | | | | | | Shapes are once again always added to the top z-index. Fixes #5691.
* | [core] Use PropertyValue<T> for Annotation line/fillBruno de Oliveira Abinader2016-07-131-6/+6
| |
* | [test] Added max zoom annotation testsBruno de Oliveira Abinader2016-06-281-0/+10
| |
* | [core] Avoid unnecessary work when a symbol annotation is updatedJohn Firebaugh2016-06-171-11/+9
| | | | | | | | In particular, if only the geometry changes, don't cascade and recalculate the style.
* | Color class (#5361)Young Hahn2016-06-151-4/+5
| | | | | | | | | | | | * Color class * Switch to list initialization
* | [tidy] Check modernize-use-autoBruno de Oliveira Abinader2016-06-131-1/+1
| | | | | | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-use-auto.html
* | [tidy] Check modernize-use-nullptrBruno de Oliveira Abinader2016-06-131-1/+1
| | | | | | | | Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html
* | [core] fix pedantic warning messagesKonstantin Käfer2016-06-134-8/+8
|/
* [core, node, android] Remove used "base" parameter from setStyleJSONJohn Firebaugh2016-06-025-19/+19
|
* [core] Rationalize naming for style-related codeJohn Firebaugh2016-06-021-1/+2
|
* [core] Generalize Map::{add,remove}CustomLayerJohn Firebaugh2016-06-021-2/+2
|