Flutter iOS Embedder
ios_context.mm
Go to the documentation of this file.
1 // Copyright 2013 The Flutter Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
6 #include <memory>
8 
9 #include "flutter/fml/logging.h"
12 
14 
15 namespace flutter {
16 
17 IOSContext::IOSContext() = default;
18 
19 IOSContext::~IOSContext() = default;
20 
21 std::unique_ptr<IOSContext> IOSContext::Create(
22  IOSRenderingAPI api,
23  IOSRenderingBackend backend,
24  const std::shared_ptr<const fml::SyncSwitch>& is_gpu_disabled_sync_switch) {
25  switch (api) {
27  FML_LOG(IMPORTANT)
28  << "Software rendering is incompatible with Impeller.\n"
29  "Software rendering may have been automatically selected when running on a "
30  "simulator "
31  "in an environment that does not support Metal. Enabling GPU passthrough in your "
32  "environment may fix this.";
33  return std::make_unique<IOSContextNoop>();
35  switch (backend) {
37  FML_LOG(FATAL) << "Impeller opt-out unavailable.";
38  return nullptr;
40  return std::make_unique<IOSContextMetalImpeller>(is_gpu_disabled_sync_switch);
41  }
42  default:
43  break;
44  }
45  FML_CHECK(false);
46  return nullptr;
47 }
48 
50  // Overridden by Impeller subclasses.
52 }
53 
54 std::shared_ptr<impeller::Context> IOSContext::GetImpellerContext() const {
55  return nullptr;
56 }
57 
58 std::shared_ptr<impeller::AiksContext> IOSContext::GetAiksContext() const {
59  return nullptr;
60 }
61 
62 } // namespace flutter
flutter::IOSRenderingBackend::kSkia
@ kSkia
flutter::IOSContext::~IOSContext
virtual ~IOSContext()
Collects the context object. This must happen on the thread on which this object was created.
ios_context_noop.h
ios_context_metal_impeller.h
flutter::IOSRenderingBackend
IOSRenderingBackend
Definition: rendering_api_selection.h:19
flutter::IOSContext::GetAiksContext
virtual std::shared_ptr< impeller::AiksContext > GetAiksContext() const
Definition: ios_context.mm:58
flutter::IOSRenderingBackend::kImpeller
@ kImpeller
flutter
Definition: accessibility_bridge.h:26
flutter::IOSRenderingAPI
IOSRenderingAPI
Definition: rendering_api_selection.h:14
flutter::IOSContext::GetBackend
virtual IOSRenderingBackend GetBackend() const
Get the rendering backend used by this context.
Definition: ios_context.mm:49
flutter::IOSRenderingAPI::kMetal
@ kMetal
rendering_api_selection.h
flutter::IOSContext::IOSContext
IOSContext()
ios_context.h
flutter::IOSRenderingAPI::kSoftware
@ kSoftware
FLUTTER_ASSERT_ARC
Definition: FlutterChannelKeyResponder.mm:13
flutter::IOSContext::Create
static std::unique_ptr< IOSContext > Create(IOSRenderingAPI api, IOSRenderingBackend backend, const std::shared_ptr< const fml::SyncSwitch > &is_gpu_disabled_sync_switch)
Create an iOS context object capable of creating the on-screen and off-screen GPU context for use by ...
Definition: ios_context.mm:21
flutter::IOSContext::GetImpellerContext
virtual std::shared_ptr< impeller::Context > GetImpellerContext() const
Definition: ios_context.mm:54