Flutter iOS Embedder
flutter::IOSContext Class Referenceabstract

Manages the lifetime of the on-screen and off-screen rendering contexts on iOS. On-screen contexts are used by Flutter for rendering into the surface. The lifecycle of this context may be tied to the lifecycle of the surface. On the other hand, the lifecycle of the off-screen context it tied to that of the platform view. This one object used to manage both context because GPU handles may need to be shared between the two context. To achieve this, context may need references to one another at creation time. This one object manages the creation, use and collection of both contexts in a client rendering API agnostic manner. More...

#include <ios_context.h>

Inheritance diagram for flutter::IOSContext:
flutter::IOSContextMetalImpeller flutter::IOSContextNoop

Public Member Functions

virtual ~IOSContext ()
 Collects the context object. This must happen on the thread on which this object was created. More...
 
virtual IOSRenderingBackend GetBackend () const
 Get the rendering backend used by this context. More...
 
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. More...
 
virtual std::shared_ptr< impeller::Context > GetImpellerContext () const
 
virtual std::shared_ptr< impeller::AiksContext > GetAiksContext () const
 

Static Public Member Functions

static std::unique_ptr< IOSContextCreate (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 Impeller. More...
 

Protected Member Functions

 IOSContext ()
 

Detailed Description

Manages the lifetime of the on-screen and off-screen rendering contexts on iOS. On-screen contexts are used by Flutter for rendering into the surface. The lifecycle of this context may be tied to the lifecycle of the surface. On the other hand, the lifecycle of the off-screen context it tied to that of the platform view. This one object used to manage both context because GPU handles may need to be shared between the two context. To achieve this, context may need references to one another at creation time. This one object manages the creation, use and collection of both contexts in a client rendering API agnostic manner.

Definition at line 38 of file ios_context.h.

Constructor & Destructor Documentation

◆ ~IOSContext()

flutter::IOSContext::~IOSContext ( )
virtualdefault

Collects the context object. This must happen on the thread on which this object was created.

◆ IOSContext()

flutter::IOSContext::IOSContext ( )
explicitprotecteddefault

Member Function Documentation

◆ Create()

std::unique_ptr< IOSContext > flutter::IOSContext::Create ( IOSRenderingAPI  api,
IOSRenderingBackend  backend,
const std::shared_ptr< const fml::SyncSwitch > &  is_gpu_disabled_sync_switch 
)
static

Create an iOS context object capable of creating the on-screen and off-screen GPU context for use by Impeller.

In case the engine does not support the specified client rendering API, this a nullptr may be returned.

Parameters
[in]apiA client rendering API supported by the engine/platform.
[in]backendA client rendering backend supported by the engine/platform.
Returns
A valid context on success. nullptr on failure.

Definition at line 21 of file ios_context.mm.

24  {
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 }

References flutter::kImpeller, flutter::kMetal, flutter::kSkia, and flutter::kSoftware.

◆ CreateExternalTexture()

virtual std::unique_ptr<Texture> flutter::IOSContext::CreateExternalTexture ( int64_t  texture_id,
NSObject< FlutterTexture > *  texture 
)
pure virtual

Creates an external texture proxy of the appropriate client rendering API.

Parameters
[in]texture_idThe texture identifier
[in]textureThe texture
Returns
The texture proxy if the rendering backend supports embedder provided external textures.

Implemented in flutter::IOSContextNoop.

◆ GetAiksContext()

std::shared_ptr< impeller::AiksContext > flutter::IOSContext::GetAiksContext ( ) const
virtual

Definition at line 58 of file ios_context.mm.

58  {
59  return nullptr;
60 }

◆ GetBackend()

IOSRenderingBackend flutter::IOSContext::GetBackend ( ) const
virtual

Get the rendering backend used by this context.

Returns
The rendering backend.

Reimplemented in flutter::IOSContextMetalImpeller, and flutter::IOSContextNoop.

Definition at line 49 of file ios_context.mm.

49  {
50  // Overridden by Impeller subclasses.
52 }

References flutter::kSkia.

◆ GetImpellerContext()

std::shared_ptr< impeller::Context > flutter::IOSContext::GetImpellerContext ( ) const
virtual

Definition at line 54 of file ios_context.mm.

54  {
55  return nullptr;
56 }

The documentation for this class was generated from the following files:
flutter::IOSRenderingBackend::kSkia
@ kSkia
flutter::IOSRenderingBackend::kImpeller
@ kImpeller
flutter::IOSRenderingAPI::kMetal
@ kMetal
flutter::IOSRenderingAPI::kSoftware
@ kSoftware