Flutter iOS Embedder
ios_context.h
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 
5 #ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_IOS_CONTEXT_H_
6 #define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_IOS_CONTEXT_H_
7 
8 #include <memory>
9 
10 #include "flutter/common/graphics/gl_context_switch.h"
11 #include "flutter/common/graphics/texture.h"
12 #include "flutter/fml/concurrent_message_loop.h"
13 #include "flutter/fml/macros.h"
14 #include "flutter/fml/synchronization/sync_switch.h"
17 #include "impeller/display_list/aiks_context.h"
18 
19 namespace impeller {
20 class Context;
21 } // namespace impeller
22 
23 namespace flutter {
24 
25 //------------------------------------------------------------------------------
26 /// @brief Manages the lifetime of the on-screen and off-screen rendering
27 /// contexts on iOS. On-screen contexts are used by Flutter for
28 /// rendering into the surface. The lifecycle of this context may be
29 /// tied to the lifecycle of the surface. On the other hand, the
30 /// lifecycle of the off-screen context it tied to that of the
31 /// platform view. This one object used to manage both context
32 /// because GPU handles may need to be shared between the two
33 /// context. To achieve this, context may need references to one
34 /// another at creation time. This one object manages the creation,
35 /// use and collection of both contexts in a client rendering API
36 /// agnostic manner.
37 ///
38 class IOSContext {
39  public:
40  //----------------------------------------------------------------------------
41  /// @brief Create an iOS context object capable of creating the on-screen
42  /// and off-screen GPU context for use by Impeller.
43  ///
44  /// In case the engine does not support the specified client
45  /// rendering API, this a `nullptr` may be returned.
46  ///
47  /// @param[in] api A client rendering API supported by the
48  /// engine/platform.
49  /// @param[in] backend A client rendering backend supported by the
50  /// engine/platform.
51  ///
52  /// @return A valid context on success. `nullptr` on failure.
53  ///
54  static std::unique_ptr<IOSContext> Create(
55  IOSRenderingAPI api,
56  IOSRenderingBackend backend,
57  const std::shared_ptr<const fml::SyncSwitch>& is_gpu_disabled_sync_switch);
58 
59  //----------------------------------------------------------------------------
60  /// @brief Collects the context object. This must happen on the thread on
61  /// which this object was created.
62  ///
63  virtual ~IOSContext();
64 
65  //----------------------------------------------------------------------------
66  /// @brief Get the rendering backend used by this context.
67  ///
68  /// @return The rendering backend.
69  ///
70  virtual IOSRenderingBackend GetBackend() const;
71 
72  //----------------------------------------------------------------------------
73  /// @brief Creates an external texture proxy of the appropriate client
74  /// rendering API.
75  ///
76  /// @param[in] texture_id The texture identifier
77  /// @param[in] texture The texture
78  ///
79  /// @return The texture proxy if the rendering backend supports embedder
80  /// provided external textures.
81  ///
82  virtual std::unique_ptr<Texture> CreateExternalTexture(int64_t texture_id,
83  NSObject<FlutterTexture>* texture) = 0;
84 
85  virtual std::shared_ptr<impeller::Context> GetImpellerContext() const;
86 
87  virtual std::shared_ptr<impeller::AiksContext> GetAiksContext() const;
88 
89  protected:
90  explicit IOSContext();
91 
92  private:
93  FML_DISALLOW_COPY_AND_ASSIGN(IOSContext);
94 };
95 
96 } // namespace flutter
97 
98 #endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_IOS_CONTEXT_H_
flutter::IOSContext::CreateExternalTexture
virtual std::unique_ptr< Texture > CreateExternalTexture(int64_t texture_id, NSObject< FlutterTexture > *texture)=0
Creates an external texture proxy of the appropriate client rendering API.
flutter::IOSContext::~IOSContext
virtual ~IOSContext()
Collects the context object. This must happen on the thread on which this object was created.
FlutterTexture.h
flutter::IOSContext
Manages the lifetime of the on-screen and off-screen rendering contexts on iOS. On-screen contexts ar...
Definition: ios_context.h:38
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
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
rendering_api_selection.h
flutter::IOSContext::IOSContext
IOSContext()
texture_id
int64_t texture_id
Definition: texture_registrar_unittests.cc:24
impeller
Definition: ios_context.h:19
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