summaryrefslogtreecommitdiff
path: root/platform
Commit message (Collapse)AuthorAgeFilesLines
* [Qt] Avoid using brace-list init ctor in QMapboxGLThiago Marcos P. Santos2017-07-192-14/+31
|
* [android] - rewrite map object intialisation (#9462)Tobrun2017-07-194-120/+94
|
* [android] - trying to update non-existent polyline fix #9543 (#9544)Łukasz Paczos2017-07-191-0/+1
|
* [Qt] Rename files with same nameThiago Marcos P. Santos2017-07-192-1/+1
| | | | | QMake is having some issues with files with same names when building the Qt Location plugin.
* [Qt] Destroy the map object before the renderer frontendThiago Marcos P. Santos2017-07-181-1/+1
| | | | | | The Map object will call the renderer frontend on its destructor. Fixes #9535.
* [android] - add OnPolygonClickListener and OnPolylineClickListener (#9443)Tobrun2017-07-184-12/+175
|
* [android] - bump OkHttp dependency to avoid null pointer exceptions on ↵Tobrun2017-07-181-1/+1
| | | | Android 7.0 (#9522)
* [android] - fine tune fling gesture (#9532)Tobrun2017-07-182-2/+2
|
* [android] remove manual ref counting on activation/deactivationIvo van Dongen2017-07-182-9/+0
|
* [test] allow only a single shared display to avoid egl errorsIvo van Dongen2017-07-187-20/+19
|
* [android][glfw][ios][macos][node][qt] rename backend to renderer backendIvo van Dongen2017-07-1813-30/+30
|
* [core] rename backend to renderer backendIvo van Dongen2017-07-183-4/+4
|
* [qt] rendering interface changesIvo van Dongen2017-07-185-4/+96
|
* [glfw] rendering interface changesIvo van Dongen2017-07-185-8/+89
|
* [android] rendering interface changesIvo van Dongen2017-07-1819-68/+229
|
* [ios][macos] rendering interface changesIvo van Dongen2017-07-189-32/+130
|
* [node] rendering interface changesIvo van Dongen2017-07-184-10/+123
|
* [core] renderer interfaceIvo van Dongen2017-07-186-8/+76
|
* [android][glfw][ios][macos][node][qt] split backend from mapobserverIvo van Dongen2017-07-1810-14/+20
|
* [core][ios][android][macos] Use premultiplied image directly for RasterTile ↵Asheem Mamoowala2017-07-173-11/+25
| | | | and ImageSource, un-premultiply in the shader for blending
* [macos] Use [NSImage CGImageForProposedRect:context:hints:] instead of ↵Asheem Mamoowala2017-07-171-10/+3
| | | | drawing into a bitmap representation
* [Qt] Align database creation behavior with the default implementationThiago Marcos P. Santos2017-07-171-2/+11
| | | | | Qt doesn't throw a Exception::Code::CANTOPEN when trying to open a database that doesn't exist without the Create flag.
* [build] Fix node package publish logicBruno de Oliveira Abinader2017-07-171-1/+1
|
* [android] - feature - location accuracy indicator threshold (#9472)Tobrun2017-07-174-2/+66
|
* [android] - rewire gesture handling and telemetry event push (#9494)Tobrun2017-07-171-64/+57
|
* [node] Bump version to 3.5.5Bruno de Oliveira Abinader2017-07-141-0/+3
|
* [build] Publish node packages with RelWithDebInfoBruno de Oliveira Abinader2017-07-142-4/+7
|
* [core] Make sure ThreadLocal will not own the pointer it is managingThiago Marcos P. Santos2017-07-142-2/+11
| | | | | | | | | | | | | | ThreadLocal should not own the pointer it is managing because the use case in Mapbox GL is to keep a pointer to a stack allocated object, like: ``` MyObject foo; threadLocal.set(&foo); ``` To keep consistency, it is required that we clear the managed object before ThreadLocal gets destroyed by setting it to `nullptr`.
* [core] fix undefined access for HTTP responses that don't contain a bodyKonstantin Käfer2017-07-131-2/+2
|
* [Qt] Fix docs warningsThiago Marcos P. Santos2017-07-132-6/+6
|
* [Qt] Share the DefaultFileSource for all QMapboxGL instancesThiago Marcos P. Santos2017-07-132-2/+20
| | | | | | Fix issues of concurrent access to the sqlite cache. Fixes #9108.
* [build] Update GLFW to 2017-07-13-67c9155Bruno de Oliveira Abinader2017-07-132-2/+2
|
* [build] enable -fvisibility=hidden for iOSKonstantin Käfer2017-07-137-4/+24
|
* [all] make default_styles header-onlyKonstantin Käfer2017-07-135-29/+8
|
* [tests] Local ignores.json file for ignored integration testsJohn Firebaugh2017-07-123-8/+71
|
* [core] Update shaders.Chris Loer2017-07-1212-119/+382
| | | | | Implements 'icon-pitch-alignment' (issue #9345) Fixes issue #9456 (map-aligned point label regression)
* [Qt] Do not return a valid mbgl::Annotation if conversion failsBruno de Oliveira Abinader2017-07-121-7/+7
|
* [core] GCC 4.9 bracket initialization issuesBruno de Oliveira Abinader2017-07-121-6/+16
|
* [core] GCC 4.9 is unable to deduce ctors when using bracket initBruno de Oliveira Abinader2017-07-121-1/+1
|
* [core] GCC 4.9 does not provide <codecvt>Bruno de Oliveira Abinader2017-07-121-0/+10
|
* [core] GCC 4.9 shadow member warningsBruno de Oliveira Abinader2017-07-122-16/+16
|
* [core] Do not use S_ISDIRThiago Marcos P. Santos2017-07-121-2/+1
| | | | Seems like Windows can do `stat()` but not S_ISDIR.
* [build] add -fvisibility=hidden for all macOS targets to avoid linker warningsKonstantin Käfer2017-07-111-0/+9
|
* [darwin] Include polylabel via cmakeJason Wray2017-07-114-40/+12
|
* [android] fix javadoc comment for public setOfflineMapboxTileCountLimit ↵Antonio Zugaldia2017-07-091-4/+5
| | | | method (#9454)
* [Qt] Make qt.cmake Windows-friendlyThiago Marcos P. Santos2017-07-071-1/+5
| | | | | - Do not build headless view. - Add no-op thread implementation.
* [Qt] Add a no-op thread helper for other platformsThiago Marcos P. Santos2017-07-071-0/+19
|
* [Qt] Use QThreadStorage for thread localThiago Marcos P. Santos2017-07-072-1/+45
| | | | Portable.
* [core] Isolate pthread-based tls implementationThiago Marcos P. Santos2017-07-076-0/+69
|
* Hit test Marker and MarkerViews (#9424)Tobrun2017-07-075-76/+141
| | | | | | * [android] - hit test Marker and MarkerViews * fixup