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...
|
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 sk_sp< GrDirectContext > | CreateResourceContext ()=0 |
| Create a resource context for use on the IO task runner. This resource context is used by Skia to upload texture to asynchronously and collect resources that are no longer needed on the render task runner. More...
|
|
virtual std::unique_ptr< GLContextResult > | MakeCurrent ()=0 |
| When using client rendering APIs whose contexts need to be bound to a specific thread, the engine will call this method to give the on-screen context a chance to bind to the current thread. 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 sk_sp< GrDirectContext > | GetMainContext () const =0 |
| Accessor for the Skia context associated with IOSSurfaces and the raster thread. More...
|
|
virtual std::shared_ptr< impeller::Context > | GetImpellerContext () const |
|
virtual std::shared_ptr< impeller::AiksContext > | GetAiksContext () const |
|
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 39 of file ios_context.h.
Create an iOS context object capable of creating the on-screen and off-screen GPU context for use by Skia.
In case the engine does not support the specified client rendering API, this a nullptr
may be returned.
- Parameters
-
[in] | api | A client rendering API supported by the engine/platform. |
[in] | backend | A client rendering backend supported by the engine/platform. |
- Returns
- A valid context on success.
nullptr
on failure.
Definition at line 23 of file ios_context.mm.
31 <<
"Software rendering is incompatible with Impeller.\n"
32 "Software rendering may have been automatically selected when running on a "
34 "in an environment that does not support Metal. Enabling GPU passthrough in your "
35 "environment may fix this.";
36 return std::make_unique<IOSContextNoop>();
38 return std::make_unique<IOSContextSoftware>();
43 return std::make_unique<IOSContextMetalSkia>();
45 FML_LOG(FATAL) <<
"Impeller opt-out unavailable.";
49 return std::make_unique<IOSContextMetalImpeller>(is_gpu_disabled_sync_switch);
References flutter::kImpeller, flutter::kMetal, flutter::kSkia, and flutter::kSoftware.