summaryrefslogtreecommitdiff
path: root/ios/benchmark
Commit message (Collapse)AuthorAgeFilesLines
* [ios] Debug maskMinh Nguyễn2016-01-281-1/+0
| | | | Ported MGLMapDebugMaskOptions from the OS X SDK. Deprecated debugActive and -cycleDebugOptions.
* Cleanup std::chrono usageBruno de Oliveira Abinader2016-01-251-7/+0
| | | | Use mbgl::Duration and mbgl::{,Milli}Seconds whenever possible.
* [ios] Invalidate CADisplayLinkMinh Nguyễn2016-01-071-4/+4
| | | | | | | | | | CADisplayLink holds a strong reference to its target, forming a cycle that must be broken with -[CADisplayLink invalidate] when the animation is complete. I don’t yet have enough faith that will-change and did-change notifications are always coming from mbgl in pairs, so this change limits CADisplayLink to when MGLMapView is in the view hierarchy. It also pauses the CADisplayLink when the view is hidden or the application is in the background. Finally, -[MGLMapView invalidate] has been renamed because that term tends not to mean “redraw” in Cocoa but is rather tied to timers. Fixes #3130. [ios] Also invalidate CADisplayLink on removal from window [ios] Also shut down CADisplayLink when view is hidden
* Happy new year!Minh Nguyễn2016-01-051-1/+1
|
* [core] Merge SQLiteCache into the platform libraryJohn Firebaugh2015-12-221-1/+0
| | | | OfflineFileSource will depend on SQLite too.
* [core] move mbgl.gyp to gyp directoryMike Morris2015-11-041-5/+5
| | | | | So npm won't clobber binding.gyp, refs https://github.com/npm/npm/issues/10243
* [core] Remove bundled styles.Leith Bade2015-10-302-2/+1
| | | | Fixes #2239
* [iOS] fix benchmarking app and update to style v8Konstantin Käfer2015-10-0211-4277/+9025
|
* Update stylesJohn Firebaugh2015-08-202-2/+2
|
* Rationalize *RenderingMap notificationsJohn Firebaugh2015-06-301-1/+1
|
* Fixed ios-bench buildMinh Nguyễn2015-05-291-1/+1
| | | | `accessToken` parameter was removed in #1553.
* Marked unused parameters with __unusedMinh Nguyễn2015-05-181-4/+1
| | | | Replaced haphazard usage of pragmas and `(void)` expressions with the `__unused` keyword.
* Removed “private” headerMinh Nguyễn2015-05-182-2/+12
| | | | | | Instead of exposing these methods in a private header that winds up triggering warnings publicly, just redeclare the methods in a category. Since this is a test app, we’ll catch any issues that arise from refactoring simply by testing. Fixes #1579.
* update header pathJustin R. Miller2015-05-051-1/+1
|
* [iOS] add benchmarking applicationKonstantin Käfer2015-05-0540-0/+8734