diff --git a/iphone/Maps/Classes/EAGLView.h b/iphone/Maps/Classes/EAGLView.h index 7fc2449983..72ab0df68d 100644 --- a/iphone/Maps/Classes/EAGLView.h +++ b/iphone/Maps/Classes/EAGLView.h @@ -1,7 +1,6 @@ #include "drape/pointers.hpp" #include "drape/drape_global.hpp" -@class MetalView; @class MWMMapWidgets; namespace dp @@ -23,7 +22,6 @@ namespace dp } @property(nonatomic) MWMMapWidgets * widgetsManager; -@property(weak, nonatomic) IBOutlet MetalView * metalView; @property(nonatomic, readonly) BOOL drapeEngineCreated; @property(nonatomic, getter=isLaunchByDeepLink) BOOL launchByDeepLink; diff --git a/iphone/Maps/Classes/EAGLView.mm b/iphone/Maps/Classes/EAGLView.mm index 04d1b675ec..78c0b87794 100644 --- a/iphone/Maps/Classes/EAGLView.mm +++ b/iphone/Maps/Classes/EAGLView.mm @@ -1,7 +1,6 @@ #import "EAGLView.h" #import "iosOGLContextFactory.h" #import "MetalContextFactory.h" -#import "MetalView.h" #import "MWMDirectionView.h" #import "MWMMapWidgets.h" @@ -15,6 +14,10 @@ #include "base/assert.hpp" #include "base/logging.hpp" +#ifdef OMIM_METAL_AVAILABLE +#import +#endif + @implementation EAGLView namespace @@ -38,10 +41,38 @@ double getExactDPI(double contentScaleFactor) } } // namespace ++ (dp::ApiVersion)getSupportedApiVersion +{ + static dp::ApiVersion apiVersion = dp::ApiVersion::Invalid; + if (apiVersion != dp::ApiVersion::Invalid) + return apiVersion; + +#ifdef OMIM_METAL_AVAILABLE + if (GetFramework().LoadMetalAllowed()) + { + id tempDevice = MTLCreateSystemDefaultDevice(); + if (tempDevice) + apiVersion = dp::ApiVersion::Metal; + } +#endif + + if (apiVersion == dp::ApiVersion::Invalid) + { + EAGLContext * tempContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES3]; + if (tempContext != nil) + apiVersion = dp::ApiVersion::OpenGLES3; + else + apiVersion = dp::ApiVersion::OpenGLES2; + } + + return apiVersion; +} + // You must implement this method + (Class)layerClass { - return [CAEAGLLayer class]; + auto const apiVersion = [EAGLView getSupportedApiVersion]; + return apiVersion == dp::ApiVersion::Metal ? [CAMetalLayer class] : [CAEAGLLayer class]; } // The GL view is stored in the nib file. When it's unarchived it's sent -initWithCoder: @@ -56,59 +87,47 @@ double getExactDPI(double contentScaleFactor) return self; } -- (dp::ApiVersion)getSupportedApiVersion -{ -#ifdef OMIM_METAL_AVAILABLE - if (GetFramework().LoadMetalAllowed()) - { - id tempDevice = MTLCreateSystemDefaultDevice(); - if (tempDevice) - return dp::ApiVersion::Metal; - } -#endif - EAGLContext * tempContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES3]; - if (tempContext != nil) - return dp::ApiVersion::OpenGLES3; - - return dp::ApiVersion::OpenGLES2;; -} - - (void)initialize { m_presentAvailable = false; m_lastViewSize = CGRectZero; - m_apiVersion = [self getSupportedApiVersion]; + m_apiVersion = [EAGLView getSupportedApiVersion]; // Correct retina display support in renderbuffer. self.contentScaleFactor = [[UIScreen mainScreen] nativeScale]; - if (m_apiVersion != dp::ApiVersion::Metal) + if (m_apiVersion == dp::ApiVersion::Metal) { - // Setup Layer Properties - CAEAGLLayer * eaglLayer = (CAEAGLLayer *)self.layer; - eaglLayer.opaque = YES; - eaglLayer.drawableProperties = @{kEAGLDrawablePropertyRetainedBacking : @NO, - kEAGLDrawablePropertyColorFormat : kEAGLColorFormatRGBA8}; +#ifdef OMIM_METAL_AVAILABLE + CAMetalLayer * layer = (CAMetalLayer *)self.layer; + layer.device = MTLCreateSystemDefaultDevice(); + NSAssert(layer.device != NULL, @"Metal is not supported on this device"); + layer.opaque = YES; +#endif + } + else + { + CAEAGLLayer * layer = (CAEAGLLayer *)self.layer; + layer.opaque = YES; + layer.drawableProperties = @{kEAGLDrawablePropertyRetainedBacking : @NO, + kEAGLDrawablePropertyColorFormat : kEAGLColorFormatRGBA8}; } } - (void)createDrapeEngine { m2::PointU const s = [self pixelSize]; + if (m_apiVersion == dp::ApiVersion::Metal) { #ifdef OMIM_METAL_AVAILABLE - CHECK(self.metalView != nil, ()); - CHECK_EQUAL(self.bounds.size.width, self.metalView.bounds.size.width, ()); - CHECK_EQUAL(self.bounds.size.height, self.metalView.bounds.size.height, ()); - m_factory = make_unique_dp(self.metalView, s); + m_factory = make_unique_dp((CAMetalLayer *)self.layer, s); #endif } else { - CAEAGLLayer * eaglLayer = (CAEAGLLayer *)self.layer; m_factory = make_unique_dp( - new iosOGLContextFactory(eaglLayer, m_apiVersion, m_presentAvailable)); + new iosOGLContextFactory((CAEAGLLayer *)self.layer, m_apiVersion, m_presentAvailable)); } [self createDrapeEngineWithWidth:s.x height:s.y]; } diff --git a/iphone/Maps/Classes/MetalContextFactory.h b/iphone/Maps/Classes/MetalContextFactory.h index 246f587ff3..5c9f4ba30c 100644 --- a/iphone/Maps/Classes/MetalContextFactory.h +++ b/iphone/Maps/Classes/MetalContextFactory.h @@ -1,5 +1,5 @@ #pragma once -#import "MetalView.h" +#import #include "drape/graphics_context_factory.hpp" #include "drape/metal/metal_base_context.hpp" @@ -8,7 +8,7 @@ class MetalContextFactory: public dp::GraphicsContextFactory { public: - MetalContextFactory(MetalView * metalView, m2::PointU const & screenSize); + MetalContextFactory(CAMetalLayer * metalLayer, m2::PointU const & screenSize); dp::GraphicsContext * GetDrawContext() override; dp::GraphicsContext * GetResourcesUploadContext() override; bool IsDrawContextCreated() const override { return true; } diff --git a/iphone/Maps/Classes/MetalContextFactory.mm b/iphone/Maps/Classes/MetalContextFactory.mm index b6826d5aa1..6fc5d7fd9b 100644 --- a/iphone/Maps/Classes/MetalContextFactory.mm +++ b/iphone/Maps/Classes/MetalContextFactory.mm @@ -51,9 +51,8 @@ public: }; } // namespace -MetalContextFactory::MetalContextFactory(MetalView * metalView, m2::PointU const & screenSize) +MetalContextFactory::MetalContextFactory(CAMetalLayer * metalLayer, m2::PointU const & screenSize) { - CAMetalLayer * metalLayer = (CAMetalLayer *)metalView.layer; m_drawContext = make_unique_dp(metalLayer, screenSize); m_uploadContext = make_unique_dp(m_drawContext->GetMetalDevice()); } diff --git a/iphone/Maps/Maps.xcodeproj/project.pbxproj b/iphone/Maps/Maps.xcodeproj/project.pbxproj index e753233a15..66b8b57007 100644 --- a/iphone/Maps/Maps.xcodeproj/project.pbxproj +++ b/iphone/Maps/Maps.xcodeproj/project.pbxproj @@ -514,7 +514,6 @@ B3E3B50220D485FA00DA8C13 /* DownloadedBookmarksDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3E3B50120D485FA00DA8C13 /* DownloadedBookmarksDataSource.swift */; }; BB25B1A71FB32767007276FA /* transit_colors.txt in Resources */ = {isa = PBXBuildFile; fileRef = BB25B1A51FB32767007276FA /* transit_colors.txt */; }; BB7626B61E85599C0031D71C /* icudt57l.dat in Resources */ = {isa = PBXBuildFile; fileRef = BB7626B41E8559980031D71C /* icudt57l.dat */; }; - BB8123CC212C25FA00ADE512 /* MetalView.mm in Sources */ = {isa = PBXBuildFile; fileRef = BB8123CB212C25FA00ADE512 /* MetalView.mm */; }; BB8123CF212C264700ADE512 /* Metal.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BB8123CD212C264700ADE512 /* Metal.framework */; }; BB8123D0212C264700ADE512 /* MetalKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BB8123CE212C264700ADE512 /* MetalKit.framework */; }; BB8123D62130427E00ADE512 /* MetalContextFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = BB8123D52130427E00ADE512 /* MetalContextFactory.mm */; }; @@ -1478,8 +1477,6 @@ B3E3B50120D485FA00DA8C13 /* DownloadedBookmarksDataSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DownloadedBookmarksDataSource.swift; sourceTree = ""; }; BB25B1A51FB32767007276FA /* transit_colors.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = transit_colors.txt; path = ../../data/transit_colors.txt; sourceTree = ""; }; BB7626B41E8559980031D71C /* icudt57l.dat */ = {isa = PBXFileReference; lastKnownFileType = file; name = icudt57l.dat; path = ../../data/icudt57l.dat; sourceTree = ""; }; - BB8123CA212C25FA00ADE512 /* MetalView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MetalView.h; sourceTree = ""; }; - BB8123CB212C25FA00ADE512 /* MetalView.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = MetalView.mm; sourceTree = ""; }; BB8123CD212C264700ADE512 /* Metal.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Metal.framework; path = System/Library/Frameworks/Metal.framework; sourceTree = SDKROOT; }; BB8123CE212C264700ADE512 /* MetalKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MetalKit.framework; path = System/Library/Frameworks/MetalKit.framework; sourceTree = SDKROOT; }; BB8123D42130427E00ADE512 /* MetalContextFactory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MetalContextFactory.h; sourceTree = ""; }; @@ -1993,8 +1990,6 @@ F6381BF41CD12045004CA943 /* LocaleTranslator.mm */, BB8123D42130427E00ADE512 /* MetalContextFactory.h */, BB8123D52130427E00ADE512 /* MetalContextFactory.mm */, - BB8123CA212C25FA00ADE512 /* MetalView.h */, - BB8123CB212C25FA00ADE512 /* MetalView.mm */, 1D3623240D0F684500981E51 /* MapsAppDelegate.h */, 1D3623250D0F684500981E51 /* MapsAppDelegate.mm */, F613FA741AB330AF002394D4 /* MapViewController */, @@ -5015,7 +5010,6 @@ 6741AA1D1BF340DE002C974C /* MWMDownloadTransitMapAlert.mm in Sources */, 340475771E081A4600C92850 /* MWMTrafficManager.mm in Sources */, 346B42AC1DD5E3D20094EBEE /* MWMLocationNotFoundAlert.mm in Sources */, - BB8123CC212C25FA00ADE512 /* MetalView.mm in Sources */, F6E2FF031E097BA00083EBEC /* MWMSearchHistoryClearCell.mm in Sources */, 340475091E08199E00C92850 /* MWMMyTarget.mm in Sources */, 340416501E7C086000E2B6D6 /* PhotoViewController.swift in Sources */, diff --git a/iphone/Maps/UI/Storyboard/Main.storyboard b/iphone/Maps/UI/Storyboard/Main.storyboard index 0b96c351a7..a57ac0f1a3 100644 --- a/iphone/Maps/UI/Storyboard/Main.storyboard +++ b/iphone/Maps/UI/Storyboard/Main.storyboard @@ -1,14 +1,11 @@ - + - - - - + @@ -21,11 +18,6 @@ - - - - - @@ -1033,7 +1018,7 @@ - + @@ -1222,7 +1207,7 @@ - +