Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove duration argument from View::notifyMapChange | John Firebaugh | 2015-06-26 | 1 | -1/+1 |
| | | | | Fixes #1026 | ||||
* | drive Android rendering from the main thread via invalidate() calls | Konstantin Käfer | 2015-06-26 | 4 | -3/+88 |
| | |||||
* | drive map rendering from main thread | Konstantin Käfer | 2015-06-26 | 1 | -3/+7 |
| | |||||
* | Replace mbgl::util::make_unique<> with std::make_unique<> | Konstantin Käfer | 2015-05-26 | 1 | -2/+1 |
| | |||||
* | DefaultFileSource has responsibility for handling mapbox:// URLs | John Firebaugh | 2015-05-26 | 1 | -2/+2 |
| | |||||
* | Merge pull request #1610 from mapbox/android-latlng-swap | Leith Bade | 2015-05-21 | 1 | -2/+2 |
|\ | | | | | Fix swapped lat/lng | ||||
| * | Fix swapped lat/lng | Leith Bade | 2015-05-21 | 1 | -2/+2 |
| | | |||||
* | | Update Android gradle plugin to 1.2.3 | Leith Bade | 2015-05-21 | 2 | -2/+2 |
|/ | |||||
* | Update Android to use new styles | Leith Bade | 2015-05-16 | 2 | -40/+22 |
| | |||||
* | Ensure call-once semantics inside InitializeExtensions | John Firebaugh | 2015-05-13 | 1 | -14/+4 |
| | |||||
* | Extensible GL extension support | John Firebaugh | 2015-05-13 | 1 | -84/+3 |
| | |||||
* | Remove unused GL feature flags | John Firebaugh | 2015-05-13 | 1 | -9/+0 |
| | | | | These were used only for prerendered textures, which were removed. | ||||
* | Merge pull request #1469 from mapbox/1435-android-gl-crash | Brad Leege | 2015-05-11 | 1 | -5/+11 |
|\ | | | | | Android GL Crash | ||||
| * | Ignore deactivate when no valid EGL display. Fixes #1435 | Leith Bade | 2015-05-09 | 1 | -5/+11 |
| | | | | | | | | | | | | | | | | | | | | Initialise NativeMapView's EGL variables before Map Fix hang Add check for double pause Add test for double pause | ||||
* | | Update to lastest Android SDK | Leith Bade | 2015-05-06 | 3 | -10/+10 |
|/ | |||||
* | Ensure no GL commands are executed after pause | John Firebaugh | 2015-05-04 | 1 | -5/+4 |
| | |||||
* | Remove unused includes | John Firebaugh | 2015-04-28 | 1 | -0/+1 |
| | |||||
* | Resize view from map thread | John Firebaugh | 2015-04-28 | 2 | -5/+1 |
| | |||||
* | Remove Map::start/stop | John Firebaugh | 2015-04-28 | 4 | -56/+1 |
| | | | | | | Both Android and iOS now use pause/resume. The map thread is always running, and be able to receive messages. When paused, it will just refuse to render. | ||||
* | Following kkaefer's view changes | John Firebaugh | 2015-04-28 | 1 | -2/+2 |
| | |||||
* | remove some unused includes | Konstantin Käfer | 2015-04-28 | 2 | -0/+2 |
| | |||||
* | move most private Map code to MapContext | Konstantin Käfer | 2015-04-28 | 3 | -13/+3 |
| | |||||
* | build on Travis' sudo: false infrastructure | Konstantin Käfer | 2015-04-28 | 4 | -141/+0 |
| | |||||
* | Revert "build on trusty" | John Firebaugh | 2015-04-22 | 4 | -0/+141 |
| | | | | | | This reverts commit decc493ec8c30d66bcdf3aa19f58972eb045b5dc. Conflicts: .mason | ||||
* | [android] never pass garbage info to RegisterNatives() | Konstantin Käfer | 2015-04-20 | 1 | -4/+2 |
| | |||||
* | build on trusty | Konstantin Käfer | 2015-04-20 | 4 | -141/+0 |
| | |||||
* | remove nativeRun() method as that is now private | Konstantin Käfer | 2015-04-17 | 2 | -15/+1 |
| | |||||
* | Rework easing transition code | John Firebaugh | 2015-04-02 | 2 | -84/+0 |
| | | | | | | | | | | | | | | This brings the easing transition code a bit closer to how easings work in gl-js. Instead of having an array of individual transitions for scale, rotate, and pan, there is a single transition function that does all the required calculations. This permits us to: * Eliminate the "timeout" transition. (Fixes #126) * Replace start/stopPanning() et al with setGestureInProgress(). Apps or SDKs are expected to make paired calls to setGestureInProgress(). This state will be ORed with the active easing state to determine when to use texture interpolation. (Fixes #79) * Run style recalculations only when an ease transition that affects the zoom is in progress. (Fixes #1155) | ||||
* | replace iterator variable types with auto | Konstantin Käfer | 2015-04-01 | 1 | -1/+1 |
| | |||||
* | Update to latest API 22 build tools | Leith Bade | 2015-03-17 | 4 | -16/+16 |
| | |||||
* | Merge pull request #972 from mapbox/log_cleanup | Thiago Marcos P. Santos | 2015-03-12 | 1 | -3/+0 |
|\ | | | | | Refactoring of the log system | ||||
| * | Make the logging system static | Thiago Marcos P. Santos | 2015-03-12 | 1 | -3/+0 |
| | | | | | | | | | | | | | | 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). | ||||
* | | fixes black flicker on rotating the device | Konstantin Käfer | 2015-03-12 | 3 | -52/+7 |
|/ | | | | | | | | | | | | 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 | ||||
* | only upload the artifact we're building | Konstantin Käfer | 2015-03-12 | 1 | -5/+26 |
| | | | | fixes #982 | ||||
* | guard against concurrent OpenGL extension loading | Konstantin Käfer | 2015-03-06 | 1 | -9/+8 |
| | |||||
* | make Map::resize() private | Konstantin Käfer | 2015-03-06 | 3 | -47/+7 |
| | | | | they can only be called by View::resize | ||||
* | #923 - Consolidating package namespaces | Brad Leege | 2015-02-26 | 2 | -3/+3 |
| | |||||
* | Fix all lint errors | Leith Bade | 2015-02-26 | 4 | -6/+7 |
| | |||||
* | Replace setRotation with Matrix | Leith Bade | 2015-02-26 | 2 | -5/+16 |
| | |||||
* | Ignore lint error from OkHTTP | Leith Bade | 2015-02-26 | 1 | -0/+4 |
| | | | | Fixes #921 | ||||
* | Replace constant | Leith Bade | 2015-02-25 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' of github.com:mapbox/mapbox-gl-native into ↵ | Leith Bade | 2015-02-25 | 8 | -101/+164 |
|\ | | | | | | | android-conversions | ||||
| * | #823 - Adding JavaDoc for cancel() | Brad Leege | 2015-02-25 | 1 | -0/+4 |
| | | |||||
| * | #823 - Building cancel method. Refactoring request to not return OkHttp ↵ | Brad Leege | 2015-02-25 | 2 | -5/+16 |
| | | | | | | | | Request object to help keep FileSource self contained. | ||||
| * | #823 - Building request method | Brad Leege | 2015-02-25 | 1 | -0/+22 |
| | | |||||
| * | #823 - Adding OkHttp dependency. Initial setup of JavaFileSource as a ↵ | Brad Leege | 2015-02-25 | 2 | -0/+25 |
| | | | | | | | | singleton class. | ||||
| * | Use Build constants instead of integers | Brad Leege | 2015-02-25 | 1 | -1/+2 |
| | | |||||
| * | #895 - Fixing missing JavaDoc warnings. | Brad Leege | 2015-02-25 | 4 | -100/+100 |
| | | |||||
* | | Merge branch 'master' of github.com:mapbox/mapbox-gl-native into ↵ | Leith Bade | 2015-02-24 | 5 | -91/+41 |
|\ \ | |/ | | | | | | | | | | | android-conversions Conflicts: android/java/MapboxGLAndroidSDKTestApp/src/main/java/com/mapbox/mapboxgl/testapp/MainActivity.java | ||||
| * | #911 - Persist GPS State in UI across device rotation | Brad Leege | 2015-02-24 | 1 | -16/+44 |
| | |