#include <context_vk.h>
Classes | |
| struct | Settings |
Public Member Functions | |
| uint64_t | GetHash () const |
| ~ContextVK () override | |
| BackendType | GetBackendType () const override |
| Get the graphics backend of an Impeller context. More... | |
| 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. More... | |
| std::shared_ptr< Allocator > | GetResourceAllocator () const override |
| Returns the allocator used to create textures and buffers on the device. More... | |
| std::shared_ptr< ShaderLibrary > | GetShaderLibrary () const override |
| Returns the library of shaders used to specify the programmable stages of a pipeline. More... | |
| std::shared_ptr< SamplerLibrary > | GetSamplerLibrary () const override |
| Returns the library of combined image samplers used in shaders. More... | |
| std::shared_ptr< PipelineLibrary > | GetPipelineLibrary () const override |
| Returns the library of pipelines used by render or compute commands. More... | |
| 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. More... | |
| 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. More... | |
| void | Shutdown () override |
| Force all pending asynchronous work to finish. This is achieved by deleting all owned concurrent message loops. More... | |
| void | SetSyncPresentation (bool value) override |
| Force the Vulkan presentation (submitKHR) to be performed on the raster task runner. More... | |
| bool | GetSyncPresentation () const |
| void | SetOffscreenFormat (PixelFormat pixel_format) |
| template<typename T > | |
| bool | SetDebugName (T handle, std::string_view label) const |
| std::shared_ptr< DeviceHolder > | GetDeviceHolder () const |
| vk::Instance | GetInstance () const |
| const vk::Device & | GetDevice () const |
| const std::shared_ptr< fml::ConcurrentTaskRunner > | GetConcurrentWorkerTaskRunner () const |
| const fml::RefPtr< fml::TaskRunner > | GetQueueSubmitRunner () const |
| A single-threaded task runner that should only be used for submitKHR. More... | |
| std::shared_ptr< SurfaceContextVK > | CreateSurfaceContext () |
| const std::shared_ptr< QueueVK > & | GetGraphicsQueue () const |
| vk::PhysicalDevice | GetPhysicalDevice () const |
| std::shared_ptr< FenceWaiterVK > | GetFenceWaiter () const |
| std::shared_ptr< ResourceManagerVK > | GetResourceManager () const |
| std::shared_ptr< CommandPoolRecyclerVK > | GetCommandPoolRecycler () const |
| std::shared_ptr< DescriptorPoolRecyclerVK > | GetDescriptorPoolRecycler () const |
| std::shared_ptr< GPUTracerVK > | GetGPUTracer () const |
| void | RecordFrameEndTime () const |
Public Member Functions inherited from impeller::Context | |
| virtual | ~Context () |
| Destroys an Impeller context. More... | |
| virtual bool | UpdateOffscreenLayerPixelFormat (PixelFormat format) |
| Pool< HostBuffer > & | GetHostBufferPool () const |
| Accessor for a pool of HostBuffers. More... | |
| virtual void | StoreTaskForGPU (const std::function< void()> &task) |
Static Public Member Functions | |
| static std::shared_ptr< ContextVK > | Create (Settings settings) |
| template<typename T > | |
| static bool | SetDebugName (const vk::Device &device, T handle, std::string_view label) |
Static Public Member Functions inherited from impeller::BackendCast< ContextVK, Context > | |
| static ContextVK & | Cast (Context &base) |
| static const ContextVK & | Cast (const Context &base) |
| static ContextVK * | Cast (Context *base) |
| static const ContextVK * | Cast (const Context *base) |
Additional Inherited Members | |
Public Types inherited from impeller::Context | |
| enum | BackendType { BackendType::kMetal, BackendType::kOpenGLES, BackendType::kVulkan } |
Public Attributes inherited from impeller::Context | |
| CaptureContext | capture |
Static Public Attributes inherited from impeller::Context | |
| static constexpr int32_t | kMaxTasksAwaitingGPU = 10 |
Protected Member Functions inherited from impeller::Context | |
| Context () | |
Definition at line 40 of file context_vk.h.
|
override |
Definition at line 115 of file context_vk.cc.
References impeller::CommandPoolRecyclerVK::DestroyThreadLocalPools().
Definition at line 95 of file context_vk.cc.
Referenced by impeller::PlaygroundImplVK::PlaygroundImplVK().
|
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 490 of file context_vk.cc.
| std::shared_ptr< SurfaceContextVK > impeller::ContextVK::CreateSurfaceContext | ( | ) |
Definition at line 527 of file context_vk.cc.
|
overridevirtual |
Implements impeller::Context.
Definition at line 466 of file context_vk.cc.
|
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 122 of file context_vk.cc.
References impeller::Context::kVulkan.
|
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 531 of file context_vk.cc.
| std::shared_ptr< CommandPoolRecyclerVK > impeller::ContextVK::GetCommandPoolRecycler | ( | ) | const |
Definition at line 551 of file context_vk.cc.
| const std::shared_ptr< fml::ConcurrentTaskRunner > impeller::ContextVK::GetConcurrentWorkerTaskRunner | ( | ) | const |
Definition at line 510 of file context_vk.cc.
|
inline |
Definition at line 163 of file context_vk.h.
| const vk::Device & impeller::ContextVK::GetDevice | ( | ) | const |
Definition at line 501 of file context_vk.cc.
Referenced by impeller::AllocateAndBindDescriptorSets(), and SetDebugName().
|
inline |
Definition at line 128 of file context_vk.h.
| std::shared_ptr< FenceWaiterVK > impeller::ContextVK::GetFenceWaiter | ( | ) | const |
Definition at line 543 of file context_vk.cc.
| std::shared_ptr< GPUTracerVK > impeller::ContextVK::GetGPUTracer | ( | ) | const |
Definition at line 561 of file context_vk.cc.
| const std::shared_ptr< QueueVK > & impeller::ContextVK::GetGraphicsQueue | ( | ) | const |
Definition at line 535 of file context_vk.cc.
References impeller::QueuesVK::graphics_queue.
|
inline |
Definition at line 57 of file context_vk.h.
Referenced by impeller::CommandPoolRecyclerVK::DestroyThreadLocalPools().
| vk::Instance impeller::ContextVK::GetInstance | ( | ) | const |
Definition at line 497 of file context_vk.cc.
| vk::PhysicalDevice impeller::ContextVK::GetPhysicalDevice | ( | ) | const |
Definition at line 539 of file context_vk.cc.
|
overridevirtual |
Returns the library of pipelines used by render or compute commands.
nullptr for a valid context. Implements impeller::Context.
Definition at line 486 of file context_vk.cc.
| const fml::RefPtr< fml::TaskRunner > impeller::ContextVK::GetQueueSubmitRunner | ( | ) | const |
A single-threaded task runner that should only be used for submitKHR.
SubmitKHR will block until all previously submitted command buffers have been scheduled. If there are no platform views in the scene (excluding texture backed platform views). Then it is safe for SwapchainImpl::Present to return before submit has completed. To do so, we offload the submit command to a specialized single threaded task runner. The single thread ensures that we do not queue up too much work and that the submissions proceed in order.
Definition at line 505 of file context_vk.cc.
|
overridevirtual |
Returns the allocator used to create textures and buffers on the device.
nullptr for a valid context. Implements impeller::Context.
Definition at line 474 of file context_vk.cc.
Referenced by impeller::AllocateAndBindDescriptorSets().
| std::shared_ptr< ResourceManagerVK > impeller::ContextVK::GetResourceManager | ( | ) | const |
Definition at line 547 of file context_vk.cc.
|
overridevirtual |
Returns the library of combined image samplers used in shaders.
nullptr for a valid context. Implements impeller::Context.
Definition at line 482 of file context_vk.cc.
|
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 478 of file context_vk.cc.
|
inline |
Definition at line 95 of file context_vk.h.
|
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 470 of file context_vk.cc.
| void impeller::ContextVK::RecordFrameEndTime | ( | ) | const |
|
inlinestatic |
Definition at line 105 of file context_vk.h.
References impeller::HasValidationLayers(), and VALIDATION_LOG.
|
inline |
Definition at line 100 of file context_vk.h.
References GetDevice().
Referenced by impeller::CreateCompatRenderPassForPipeline(), and impeller::QueuesVK::QueuesVK().
| void impeller::ContextVK::SetOffscreenFormat | ( | PixelFormat | pixel_format | ) |
Definition at line 461 of file context_vk.cc.
References impeller::BackendCast< CapabilitiesVK, Capabilities >::Cast(), and impeller::CapabilitiesVK::SetOffscreenFormat().
|
inlineoverridevirtual |
Force the Vulkan presentation (submitKHR) to be performed on the raster task runner.
This is required for correct rendering on Android when using the hybrid composition mode. This has no effect on other backends. This is analogous to the check for isMainThread in surface_mtl.mm to block presentation on scheduling of all pending work.
Reimplemented from impeller::Context.
Definition at line 93 of file context_vk.h.
|
overridevirtual |
Force all pending asynchronous work to finish. This is achieved by deleting all owned concurrent message loops.
Implements impeller::Context.
Definition at line 514 of file context_vk.cc.