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  const Settings& settings) {
26  switch (api) {
28  FML_LOG(IMPORTANT)
29  << "Software rendering is incompatible with Impeller.\n"
30  "Software rendering may have been automatically selected when running on a "
31  "simulator "
32  "in an environment that does not support Metal. Enabling GPU passthrough in your "
33  "environment may fix this.";
34  return std::make_unique<IOSContextNoop>();
36  switch (backend) {
38  FML_LOG(FATAL) << "Impeller opt-out unavailable.";
39  return nullptr;
41  return std::make_unique<IOSContextMetalImpeller>(settings, is_gpu_disabled_sync_switch);
42  }
43  default:
44  break;
45  }
46  FML_CHECK(false);
47  return nullptr;
48 }
49 
51  // Overridden by Impeller subclasses.
53 }
54 
55 std::shared_ptr<impeller::Context> IOSContext::GetImpellerContext() const {
56  return nullptr;
57 }
58 
59 std::shared_ptr<impeller::AiksContext> IOSContext::GetAiksContext() const {
60  return nullptr;
61 }
62 
63 } // namespace flutter
virtual std::shared_ptr< impeller::Context > GetImpellerContext() const
Definition: ios_context.mm:55
static std::unique_ptr< IOSContext > Create(IOSRenderingAPI api, IOSRenderingBackend backend, const std::shared_ptr< const fml::SyncSwitch > &is_gpu_disabled_sync_switch, const Settings &settings)
Create an iOS context object capable of creating the on-screen and off-screen GPU context for use by ...
Definition: ios_context.mm:21
virtual ~IOSContext()
Collects the context object. This must happen on the thread on which this object was created.
virtual IOSRenderingBackend GetBackend() const
Get the rendering backend used by this context.
Definition: ios_context.mm:50
virtual std::shared_ptr< impeller::AiksContext > GetAiksContext() const
Definition: ios_context.mm:59