summaryrefslogtreecommitdiff
path: root/ios/benchmark/MBXBenchViewController.mm
Commit message (Collapse)AuthorAgeFilesLines
* [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
* [core] Remove bundled styles.Leith Bade2015-10-301-1/+1
| | | | Fixes #2239
* [iOS] fix benchmarking app and update to style v8Konstantin Käfer2015-10-021-0/+12
|
* Update stylesJohn Firebaugh2015-08-201-1/+1
|
* 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-181-1/+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-051-0/+140