summaryrefslogtreecommitdiff
path: root/platform/ios/benchmark
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2016-04-18 00:02:16 -0700
committerMinh Nguyễn <mxn@1ec5.org>2016-04-18 15:47:47 -0700
commit27842221c9437a92aabd23e6cab4571aba7eea95 (patch)
tree48277b5862b62f3ba0e87482220821bec7a2beff /platform/ios/benchmark
parentd86e7323cc85a2e9038af71047dbf577c35d80b5 (diff)
downloadqtlocation-mapboxgl-27842221c9437a92aabd23e6cab4571aba7eea95.tar.gz
[ios] Replaced MGLMapView redeclaration with internal header
Diffstat (limited to 'platform/ios/benchmark')
-rw-r--r--platform/ios/benchmark/MBXBenchViewController.mm16
1 files changed, 1 insertions, 15 deletions
diff --git a/platform/ios/benchmark/MBXBenchViewController.mm b/platform/ios/benchmark/MBXBenchViewController.mm
index 5768872160..5745a9748b 100644
--- a/platform/ios/benchmark/MBXBenchViewController.mm
+++ b/platform/ios/benchmark/MBXBenchViewController.mm
@@ -1,26 +1,12 @@
#import "MBXBenchViewController.h"
#import <Mapbox/Mapbox.h>
+#import "MGLMapView_Internal.h"
#include "locations.hpp"
#include <chrono>
-@interface MGLMapView (MBXBenchmarkAdditions)
-
-#pragma mark - Debugging
-
-/** Triggers another render pass even when it is not necessary. */
-- (void)setNeedsGLDisplay;
-
-/** Returns whether the map view is currently loading or processing any assets required to render the map */
-- (BOOL)isFullyLoaded;
-
-/** Empties the in-memory tile cache. */
-- (void)didReceiveMemoryWarning;
-
-@end
-
@interface MBXBenchViewController () <MGLMapViewDelegate>
@property (nonatomic) MGLMapView *mapView;