A noop rendering context for usage on simulators without metal support. More...
#include <ios_context_noop.h>
Public Member Functions | |
IOSContextNoop () | |
~IOSContextNoop () | |
sk_sp< GrDirectContext > | CreateResourceContext () override |
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... | |
sk_sp< GrDirectContext > | GetMainContext () const override |
Accessor for the Skia context associated with IOSSurfaces and the raster thread. More... | |
std::unique_ptr< GLContextResult > | MakeCurrent () override |
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... | |
std::unique_ptr< Texture > | CreateExternalTexture (int64_t texture_id, fml::scoped_nsobject< NSObject< FlutterTexture >> texture) override |
Creates an external texture proxy of the appropriate client rendering API. More... | |
IOSRenderingBackend | GetBackend () const override |
Get the rendering backend used by this context. More... | |
Public Member Functions inherited from flutter::IOSContext | |
virtual | ~IOSContext () |
Collects the context object. This must happen on the thread on which this object was created. More... | |
virtual std::shared_ptr< impeller::Context > | GetImpellerContext () const |
virtual std::shared_ptr< impeller::AiksContext > | GetAiksContext () const |
Additional Inherited Members | |
Static Public Member Functions inherited from flutter::IOSContext | |
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 Skia. More... | |
Protected Member Functions inherited from flutter::IOSContext | |
IOSContext () | |
A noop rendering context for usage on simulators without metal support.
Definition at line 13 of file ios_context_noop.h.
|
default |
|
default |
|
overridevirtual |
Creates an external texture proxy of the appropriate client rendering API.
[in] | texture_id | The texture identifier |
[in] | texture | The texture |
Implements flutter::IOSContext.
Definition at line 40 of file ios_context_noop.mm.
|
overridevirtual |
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.
nullptr
on failure. Implements flutter::IOSContext.
Definition at line 19 of file ios_context_noop.mm.
|
overridevirtual |
Get the rendering backend used by this context.
Reimplemented from flutter::IOSContext.
Definition at line 29 of file ios_context_noop.mm.
References flutter::kImpeller.
|
overridevirtual |
Accessor for the Skia context associated with IOSSurfaces and the raster thread.
There can be any number of resource contexts but this is the one context that will be used by surfaces to draw to the screen from the raster thread.
nullptr
on failure. Implements flutter::IOSContext.
Definition at line 24 of file ios_context_noop.mm.
|
overridevirtual |
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.
true
.false
.ResoruceMakeCurrent
method instead.Implements flutter::IOSContext.
Definition at line 34 of file ios_context_noop.mm.