summaryrefslogtreecommitdiff
path: root/platform
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1012 from mapbox/1011-bundleJustin R. Miller2015-03-171-1/+10
|\ | | | | Look inside MapboxGL.bundle when present
| * Look inside MapboxGL.bundle when presentMinh Nguyễn2015-03-161-1/+10
| | | | | | | | Fixes #1011.
* | fix sprites for pixel ratios that are not 1 and 2Konstantin Käfer2015-03-173-112/+1
|/ | | | | | - OpenGL ES 2 doesn't allow NPOT textures with wrap-around - The Sprite object reported the map's pixelRatio, even though it loaded @2x assets - Copying icons from the sprite into the atlas now uses bilinear scaling to scale up to the actual size
* iOS setAppliedStyleClasses -> setStyleClassesJustin R. Miller2015-03-131-4/+4
|
* Merge pull request #994 from mapbox/990-paintItBlackJustin R. Miller2015-03-121-1/+1
|\ | | | | paint it black
| * #990 - Changing to clear color instead of blackBrad Leege2015-03-121-1/+1
| |
| * #990 - Changing background color from white to blackBrad Leege2015-03-121-1/+1
| |
* | Merge pull request #984 from mapbox/log_stderr_printfJohn Firebaugh2015-03-125-11/+11
|\ \ | | | | | | Get rid of printf and cout by using Log::*
| * | Get rid of printf and cout by using Log::*Thiago Marcos P. Santos2015-03-125-11/+11
| |/ | | | | | | | | | | | | Use our logging system that will route the message accordingly on the target platform. Fixes #613
* | Avoid building a redundant arrayMinh Nguyễn2015-03-121-6/+5
| | | | | | | | Followup to 28e28934c74b0f8668020de03caf61d65a9c9842.
* | Remove the file extensions from the bundledStyleNames methodAnthony Picciano2015-03-121-3/+6
|/
* Merge pull request #972 from mapbox/log_cleanupThiago Marcos P. Santos2015-03-124-83/+12
|\ | | | | Refactoring of the log system
| * Make the logging system staticThiago Marcos P. Santos2015-03-124-13/+13
| | | | | | | | | | | | | | No initialization is needed anymore and we can use the logging functions safely at any point of the code (threading is not handled though, so you might get multiplexed messages if you log from two threads simultaneously).
| * Simplify the logging mechanismThiago Marcos P. Santos2015-03-123-71/+0
| | | | | | | | | | | | | | | | | | Move the implementation of the more specialized methods to the base class and let the platform implement only the most generic method that takes all the possible arguments. These specialized methods will then map to the generic implementation that must be provided by the platforms we support.
* | fixes black flicker on rotating the deviceKonstantin Käfer2015-03-123-26/+23
|/ | | | | | | | | | | | fixes #838 instead of rendering ad libitum on the map thread, we are now driving rendering from the UI thread on iOS via the map.renderSync() function. There are still white bars during the rotation, but the general content of the view is kept visible. - upgrades GLFW to 3.1 - removes swapped/needsSwap in favor of a more explicit scheme - View#invalidate() now replaces View#swap() and is called whenever the View needs to trigger a rerender. GLFW and Android to this right away, while iOS goes back to the main thread and does the Map redrawing as part of the GLKView update - sets all iOS deployment targets to 7.0 - disables SQLite3 version check, since the library version changed on iOS 8.2
* Relax sqlite version check to major version onlyJohn Firebaugh2015-03-111-8/+1
| | | | | | | iOS 8.2 updates the included SQLite version to 3.8.4, while iOS 7.0 up to iOS 8.1 provides version 3.7.13. When compiling with the 8.2 SDK and running on 8.1 or below, or vice versa, a strict check fails. Fixes #968.
* refs #935: remove dispatch_once, favor property use, and return immutable stylesJustin R. Miller2015-03-091-21/+19
|
* Alias hybrid to satelliteMinh Nguyễn2015-03-081-5/+31
| | | | | | Looks terrible at the moment, but the API is closer to what developers would expect. Fixes #935.
* scope Requests to an Environment object for easier cancelationKonstantin Käfer2015-03-061-0/+3
| | | | | | | | | we are now scoping all file requests to an environment object. The FileSource implementation treats this as an opaque pointer, but allows canceling all Requests that are associated with that pointer. This is necessary to abort all file requests that originated from a particular Map object. Aborting a file request is different from canceling a file request: A canceled request doesn't have its callback called, while an aborted request will have its callback called with an error, indicating that the environment is going to be shut down.
* fix handling around unique_ptr releasesKonstantin Käfer2015-03-062-2/+1
|
* Fail early in case there is no displayKonstantin Käfer2015-03-061-0/+4
|
* guard against concurrent OpenGL extension loadingKonstantin Käfer2015-03-063-9/+25
|
* make Map::resize() privateKonstantin Käfer2015-03-063-16/+22
| | | | they can only be called by View::resize
* Merge pull request #950 from friedbunny/3x-assetsJustin R. Miller2015-03-051-0/+0
|\ | | | | Add optimized 3x assets
| * Add optimized 3x assetsJason Wray2015-03-051-0/+0
| |
* | refs #950: add 3x Mapbox wordmarkJustin R. Miller2015-03-051-0/+0
|/
* #869 - Configuring cache.db to live in /Library/Caches for iOSBrad Leege2015-03-041-1/+1
|
* update default iOS style shown v6 -> v7Justin R. Miller2015-03-031-1/+1
|
* Fixed new clang errors in Xcode 6.3b2Minh Nguyễn2015-02-231-1/+1
|
* update uv_zipKonstantin Käfer2015-02-171-0/+2
|
* wrong symbol nameKonstantin Käfer2015-02-171-1/+1
|
* add ca bundle loading back to CURLKonstantin Käfer2015-02-171-4/+118
|
* update uv_zip and add testsKonstantin Käfer2015-02-163-22/+45
|
* add libzip fixKonstantin Käfer2015-02-161-2/+39
|
* fixes #476 & #853: pixel/meter/latlng conversion routines in core & iOSJustin R. Miller2015-02-161-31/+60
|
* Revert "put cache.db in the caches folder"Justin R. Miller2015-02-121-1/+1
|
* put cache.db in the caches folderJay Mooney2015-02-121-1/+1
|
* Add assetRoot for AndroidLeith Bade2015-02-101-0/+16
|
* Merge pull request #845 from mapbox/scale-factor-3Justin R. Miller2015-02-101-0/+3
|\ | | | | fixes #621: better performance for iPhone 6 Plus through smaller render buffer
| * fixes #621: better performance for iPhone 6 Plus through smaller renderbufferJustin R. Miller2015-02-101-0/+3
| |
* | Merge pull request #840 from mapbox/glx-cleanupMike Morris2015-02-102-3/+9
|\ \ | |/ |/| forward declare GLX typedefs to limit conflicts from glx.h
| * forward declare GLX typedefs to limit conflicts from glx.hMike Morris2015-02-102-3/+9
| |
* | fixes #839: add isPackedDepthStencilSupported & isDepth24Supported for iOSJustin R. Miller2015-02-101-0/+8
| |
* | fixes #764: cyclical iOS referenceJustin R. Miller2015-02-101-6/+4
|/
* move iOS code from gl-cocoa to this projectJustin R. Miller2015-02-0912-4/+2008
|
* guard boost include with pragma ignoresKonstantin Käfer2015-02-042-0/+13
|
* refactor makefileKonstantin Käfer2015-02-0410-454/+609
|
* add missing headersKonstantin Käfer2015-02-041-0/+1
|
* make storage lib separate so we can build without storage libsKonstantin Käfer2015-02-046-0/+880
|
* execute the correct server path and use the exepath for application root ↵Konstantin Käfer2015-02-041-2/+16
| | | | rather than the cwd