#include <context_mtl.h>
Public Member Functions | |
| ~ContextMTL () override | |
| BackendType | GetBackendType () const override |
| Get the graphics backend of an Impeller context. | |
| id< MTLDevice > | GetMTLDevice () const |
| std::string | DescribeGpuModel () const override |
| bool | IsValid () const override |
| Determines if a context is valid. If the caller ever receives an invalid context, they must discard it and construct a new context. There is no recovery mechanism to repair a bad context. | |
| std::shared_ptr< Allocator > | GetResourceAllocator () const override |
| Returns the allocator used to create textures and buffers on the device. | |
| std::shared_ptr< ShaderLibrary > | GetShaderLibrary () const override |
| Returns the library of shaders used to specify the programmable stages of a pipeline. | |
| std::shared_ptr< SamplerLibrary > | GetSamplerLibrary () const override |
| Returns the library of combined image samplers used in shaders. | |
| std::shared_ptr< PipelineLibrary > | GetPipelineLibrary () const override |
| Returns the library of pipelines used by render or compute commands. | |
| std::shared_ptr< CommandBuffer > | CreateCommandBuffer () const override |
| Create a new command buffer. Command buffers can be used to encode graphics, blit, or compute commands to be submitted to the device. | |
| std::shared_ptr< CommandQueue > | GetCommandQueue () const override |
| Return the graphics queue for submitting command buffers. | |
| const std::shared_ptr< const Capabilities > & | GetCapabilities () const override |
Get the capabilities of Impeller context. All optionally supported feature of the platform, client-rendering API, and device can be queried using the Capabilities. | |
| RuntimeStageBackend | GetRuntimeStageBackend () const override |
| Retrieve the runtime stage for this context type. | |
| void | SetCapabilities (const std::shared_ptr< const Capabilities > &capabilities) |
| bool | UpdateOffscreenLayerPixelFormat (PixelFormat format) override |
| void | Shutdown () override |
| Force all pending asynchronous work to finish. This is achieved by deleting all owned concurrent message loops. | |
| id< MTLCommandBuffer > | CreateMTLCommandBuffer (const std::string &label) const |
| std::shared_ptr< const fml::SyncSwitch > | GetIsGpuDisabledSyncSwitch () const |
| void | StoreTaskForGPU (const fml::closure &task, const fml::closure &failure) override |
| void | FlushTasksAwaitingGPU () |
Public Member Functions inherited from impeller::Context | |
| virtual | ~Context () |
| Destroys an Impeller context. | |
| virtual void | InitializeCommonlyUsedShadersIfNeeded () const |
| virtual void | DisposeThreadLocalCachedResources () |
| virtual bool | EnqueueCommandBuffer (std::shared_ptr< CommandBuffer > command_buffer) |
| Enqueue command_buffer for submission by the end of the frame. | |
| virtual bool | FlushCommandBuffers () |
| Flush all pending command buffers. | |
| virtual bool | AddTrackingFence (const std::shared_ptr< Texture > &texture) const |
| virtual std::shared_ptr< const IdleWaiter > | GetIdleWaiter () const |
| virtual void | ResetThreadLocalState () const |
| virtual bool | SubmitOnscreen (std::shared_ptr< CommandBuffer > cmd_buffer) |
| Submit the command buffer that renders to the onscreen surface. | |
| const Flags & | GetFlags () const |
Static Public Member Functions | |
| static std::shared_ptr< ContextMTL > | Create (const Flags &flags, const std::vector< std::string > &shader_library_paths, std::shared_ptr< const fml::SyncSwitch > is_gpu_disabled_sync_switch) |
| static std::shared_ptr< ContextMTL > | Create (const Flags &flags, const std::vector< std::shared_ptr< fml::Mapping > > &shader_libraries_data, std::shared_ptr< const fml::SyncSwitch > is_gpu_disabled_sync_switch, const std::string &label, std::optional< PixelFormat > pixel_format_override=std::nullopt) |
| static std::shared_ptr< ContextMTL > | Create (const Flags &flags, id< MTLDevice > device, id< MTLCommandQueue > command_queue, const std::vector< std::shared_ptr< fml::Mapping > > &shader_libraries_data, std::shared_ptr< const fml::SyncSwitch > is_gpu_disabled_sync_switch, const std::string &label) |
Static Public Member Functions inherited from impeller::BackendCast< ContextMTL, Context > | |
| static ContextMTL & | Cast (Context &base) |
| static const ContextMTL & | Cast (const Context &base) |
| static ContextMTL * | Cast (Context *base) |
| static const ContextMTL * | Cast (const Context *base) |
Additional Inherited Members | |
Public Types inherited from impeller::Context | |
| enum class | BackendType { kMetal , kOpenGLES , kVulkan } |
Static Public Attributes inherited from impeller::Context | |
| static constexpr int32_t | kMaxTasksAwaitingGPU = 1024 |
Protected Member Functions inherited from impeller::Context | |
| Context (const Flags &flags) | |
Protected Attributes inherited from impeller::Context | |
| Flags | flags_ |
| std::vector< std::function< void()> > | per_frame_task_ |
Definition at line 65 of file context_mtl.h.
|
override |
Definition at line 294 of file context_mtl.mm.
|
static |
Definition at line 252 of file context_mtl.mm.
References impeller::CreateMetalCommandQueue(), impeller::CreateMetalDevice(), device, FML_LOG, and impeller::MTLShaderLibraryFromFileData().
|
static |
Definition at line 232 of file context_mtl.mm.
References impeller::CreateMetalCommandQueue(), impeller::CreateMetalDevice(), device, FML_LOG, and impeller::MTLShaderLibraryFromFilePaths().
Referenced by impeller::interop::ContextMTL::Create(), FlutterDarwinContextMetalImpeller::createExternalTextureWithIdentifier:texture:, flutter::testing::CreateImpellerContext(), CreateImpellerContext(), flutter::EmbedderSurfaceMetalImpeller::EmbedderSurfaceMetalImpeller(), flutter::TesterContextMTL::Initialize(), and impeller::PlaygroundImplMTL::PlaygroundImplMTL().
|
static |
Definition at line 275 of file context_mtl.mm.
References device, FML_LOG, and impeller::MTLShaderLibraryFromFileData().
|
overridevirtual |
Create a new command buffer. Command buffers can be used to encode graphics, blit, or compute commands to be submitted to the device.
A command buffer can only be used on a single thread. Multi-threaded render, blit, or compute passes must create a new command buffer on each thread.
Implements impeller::Context.
Definition at line 328 of file context_mtl.mm.
Referenced by impeller::SurfaceMTL::PreparePresent().
| id< MTLCommandBuffer > impeller::ContextMTL::CreateMTLCommandBuffer | ( | const std::string & | label | ) | const |
Definition at line 383 of file context_mtl.mm.
Referenced by impeller::SurfaceMTL::Present().
|
overridevirtual |
Implements impeller::Context.
Definition at line 303 of file context_mtl.mm.
References name.
| void impeller::ContextMTL::FlushTasksAwaitingGPU | ( | ) |
Definition at line 418 of file context_mtl.mm.
References fml::SyncSwitch::Handlers::SetIfFalse().
|
overridevirtual |
Get the graphics backend of an Impeller context.
This is useful for cases where a renderer needs to track and
lookup backend-specific resources, like shaders or uniform
layout information.
It's not recommended to use this as a substitute for
per-backend capability checking. Instead, check for specific
capabilities via `GetCapabilities()`.
Context. Implements impeller::Context.
Definition at line 298 of file context_mtl.mm.
|
overridevirtual |
Get the capabilities of Impeller context. All optionally supported feature of the platform, client-rendering API, and device can be queried using the Capabilities.
nullptr for a valid context. Implements impeller::Context.
Definition at line 368 of file context_mtl.mm.
|
overridevirtual |
Return the graphics queue for submitting command buffers.
Implements impeller::Context.
Definition at line 457 of file context_mtl.mm.
| std::shared_ptr< const fml::SyncSwitch > impeller::ContextMTL::GetIsGpuDisabledSyncSwitch | ( | ) | const |
Definition at line 341 of file context_mtl.mm.
| id< MTLDevice > impeller::ContextMTL::GetMTLDevice | ( | ) | const |
Definition at line 364 of file context_mtl.mm.
Referenced by impeller::PlaygroundImplMTL::PlaygroundImplMTL().
|
overridevirtual |
Returns the library of pipelines used by render or compute commands.
nullptr for a valid context. Implements impeller::Context.
Definition at line 318 of file context_mtl.mm.
|
overridevirtual |
Returns the allocator used to create textures and buffers on the device.
nullptr for a valid context. Implements impeller::Context.
Definition at line 360 of file context_mtl.mm.
|
overridevirtual |
Retrieve the runtime stage for this context type.
This is used by the engine shell and other subsystems for loading the correct shader types.
Implements impeller::Context.
Definition at line 462 of file context_mtl.mm.
References impeller::kMetal.
|
overridevirtual |
Returns the library of combined image samplers used in shaders.
nullptr for a valid context. Implements impeller::Context.
Definition at line 323 of file context_mtl.mm.
|
overridevirtual |
Returns the library of shaders used to specify the programmable stages of a pipeline.
nullptr for a valid context. Implements impeller::Context.
Definition at line 313 of file context_mtl.mm.
|
overridevirtual |
Determines if a context is valid. If the caller ever receives an invalid context, they must discard it and construct a new context. There is no recovery mechanism to repair a bad context.
It is convention in Impeller to never return an invalid context from a call that returns an pointer to a context. The call implementation performs validity checks itself and return a null context instead of a pointer to an invalid context.
How a context goes invalid is backend specific. It could happen due to device loss, or any other unrecoverable error.
Implements impeller::Context.
Definition at line 308 of file context_mtl.mm.
| void impeller::ContextMTL::SetCapabilities | ( | const std::shared_ptr< const Capabilities > & | capabilities | ) |
Definition at line 372 of file context_mtl.mm.
|
overridevirtual |
Force all pending asynchronous work to finish. This is achieved by deleting all owned concurrent message loops.
Implements impeller::Context.
Definition at line 333 of file context_mtl.mm.
|
overridevirtual |
Stores a task on the ContextMTL that is awaiting access for the GPU.
The task will be executed in the event that the GPU access has changed to being available or that the task has been canceled. The task should operate with the SyncSwitch to make sure the GPU is accessible.
If the queue of pending tasks is cleared without GPU access, then the failure callback will be invoked and the primary task function will not
Threadsafe.
task will be executed on the platform thread.
Reimplemented from impeller::Context.
Definition at line 392 of file context_mtl.mm.
|
overridevirtual |
Reimplemented from impeller::Context.
Definition at line 378 of file context_mtl.mm.
References format, and impeller::InferMetalCapabilities().