Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
impeller::SurfaceContextVK Class Reference

#include <surface_context_vk.h>

Inheritance diagram for impeller::SurfaceContextVK:
impeller::Context impeller::BackendCast< SurfaceContextVK, Context >

Public Member Functions

 SurfaceContextVK (const std::shared_ptr< ContextVK > &parent)
 
 ~SurfaceContextVK () override
 
BackendType GetBackendType () const override
 Get the graphics backend of an Impeller context.
 
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< AllocatorGetResourceAllocator () const override
 Returns the allocator used to create textures and buffers on the device.
 
std::shared_ptr< ShaderLibraryGetShaderLibrary () const override
 Returns the library of shaders used to specify the programmable stages of a pipeline.
 
std::shared_ptr< SamplerLibraryGetSamplerLibrary () const override
 Returns the library of combined image samplers used in shaders.
 
std::shared_ptr< PipelineLibraryGetPipelineLibrary () const override
 Returns the library of pipelines used by render or compute commands.
 
std::shared_ptr< CommandBufferCreateCommandBuffer () 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.
 
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.
 
std::shared_ptr< CommandQueueGetCommandQueue () const override
 Return the graphics queue for submitting command buffers.
 
void Shutdown () override
 Force all pending asynchronous work to finish. This is achieved by deleting all owned concurrent message loops.
 
bool SetWindowSurface (vk::UniqueSurfaceKHR surface, const ISize &size)
 
std::unique_ptr< SurfaceAcquireNextSurface ()
 
void UpdateSurfaceSize (const ISize &size) const
 Mark the current swapchain configuration as dirty, forcing it to be recreated on the next frame.
 
void InitializeCommonlyUsedShadersIfNeeded () const override
 
const vk::Device & GetDevice () const
 
const ContextVKGetParent () const
 
- Public Member Functions inherited from impeller::Context
virtual ~Context ()
 Destroys an Impeller context.
 
virtual bool UpdateOffscreenLayerPixelFormat (PixelFormat format)
 
virtual void StoreTaskForGPU (const std::function< void()> &task)
 

Additional Inherited Members

- Public Types inherited from impeller::Context
enum class  BackendType { kMetal , kOpenGLES , kVulkan }
 
- Static Public Member Functions inherited from impeller::BackendCast< SurfaceContextVK, Context >
static SurfaceContextVKCast (Context &base)
 
static const SurfaceContextVKCast (const Context &base)
 
static SurfaceContextVKCast (Context *base)
 
static const SurfaceContextVKCast (const Context *base)
 
- 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 ()
 
- Protected Attributes inherited from impeller::Context
std::vector< std::function< void()> > per_frame_task_
 

Detailed Description

For Vulkan, there is both a ContextVK that implements Context and a SurfaceContextVK that also implements Context and takes a ContextVK as its parent. There is a one to many relationship between ContextVK and SurfaceContextVK.

Most operations in this class are delegated to the parent ContextVK. This class specifically manages swapchains and creation of VkSurfaces on Android. By maintaining the swapchain this way, it is possible to have multiple surfaces sharing the same ContextVK without stepping on each other's swapchains.

Definition at line 31 of file surface_context_vk.h.

Constructor & Destructor Documentation

◆ SurfaceContextVK()

impeller::SurfaceContextVK::SurfaceContextVK ( const std::shared_ptr< ContextVK > &  parent)
explicit

Definition at line 15 of file surface_context_vk.cc.

16 : parent_(parent) {}

◆ ~SurfaceContextVK()

impeller::SurfaceContextVK::~SurfaceContextVK ( )
overridedefault

Member Function Documentation

◆ AcquireNextSurface()

std::unique_ptr< Surface > impeller::SurfaceContextVK::AcquireNextSurface ( )

Definition at line 80 of file surface_context_vk.cc.

80 {
81 TRACE_EVENT0("impeller", __FUNCTION__);
82 auto surface = swapchain_ ? swapchain_->AcquireNextDrawable() : nullptr;
83 if (!surface) {
84 return nullptr;
85 }
86 if (auto pipeline_library = parent_->GetPipelineLibrary()) {
87 impeller::PipelineLibraryVK::Cast(*pipeline_library)
89 }
90 parent_->GetCommandPoolRecycler()->Dispose();
91 parent_->GetResourceAllocator()->DebugTraceMemoryStatistics();
92 return surface;
93}
static PipelineLibraryVK & Cast(PipelineLibrary &base)
VkSurfaceKHR surface
Definition main.cc:49
#define TRACE_EVENT0(category_group, name)

◆ CreateCommandBuffer()

std::shared_ptr< CommandBuffer > impeller::SurfaceContextVK::CreateCommandBuffer ( ) const
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.

Returns
A new command buffer.

Implements impeller::Context.

Definition at line 48 of file surface_context_vk.cc.

48 {
49 return parent_->CreateCommandBuffer();
50}

◆ DescribeGpuModel()

std::string impeller::SurfaceContextVK::DescribeGpuModel ( ) const
overridevirtual

Implements impeller::Context.

Definition at line 24 of file surface_context_vk.cc.

24 {
25 return parent_->DescribeGpuModel();
26}

◆ GetBackendType()

Context::BackendType impeller::SurfaceContextVK::GetBackendType ( ) const
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()`.
Returns
The graphics backend of the Context.

Implements impeller::Context.

Definition at line 20 of file surface_context_vk.cc.

20 {
21 return parent_->GetBackendType();
22}

◆ GetCapabilities()

const std::shared_ptr< const Capabilities > & impeller::SurfaceContextVK::GetCapabilities ( ) const
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.

Returns
The capabilities. Can never be nullptr for a valid context.

Implements impeller::Context.

Definition at line 56 of file surface_context_vk.cc.

57 {
58 return parent_->GetCapabilities();
59}

◆ GetCommandQueue()

std::shared_ptr< CommandQueue > impeller::SurfaceContextVK::GetCommandQueue ( ) const
overridevirtual

Return the graphics queue for submitting command buffers.

Implements impeller::Context.

Definition at line 52 of file surface_context_vk.cc.

52 {
53 return parent_->GetCommandQueue();
54}

◆ GetDevice()

const vk::Device & impeller::SurfaceContextVK::GetDevice ( ) const

Definition at line 122 of file surface_context_vk.cc.

122 {
123 return parent_->GetDevice();
124}

◆ GetParent()

const ContextVK & impeller::SurfaceContextVK::GetParent ( ) const

Definition at line 130 of file surface_context_vk.cc.

130 {
131 return *parent_;
132}

◆ GetPipelineLibrary()

std::shared_ptr< PipelineLibrary > impeller::SurfaceContextVK::GetPipelineLibrary ( ) const
overridevirtual

Returns the library of pipelines used by render or compute commands.

Returns
The pipeline library. Can never be nullptr for a valid context.

Implements impeller::Context.

Definition at line 44 of file surface_context_vk.cc.

44 {
45 return parent_->GetPipelineLibrary();
46}

◆ GetResourceAllocator()

std::shared_ptr< Allocator > impeller::SurfaceContextVK::GetResourceAllocator ( ) const
overridevirtual

Returns the allocator used to create textures and buffers on the device.

Returns
The resource allocator. Can never be nullptr for a valid context.

Implements impeller::Context.

Definition at line 32 of file surface_context_vk.cc.

32 {
33 return parent_->GetResourceAllocator();
34}

◆ GetSamplerLibrary()

std::shared_ptr< SamplerLibrary > impeller::SurfaceContextVK::GetSamplerLibrary ( ) const
overridevirtual

Returns the library of combined image samplers used in shaders.

Returns
The sampler library. Can never be nullptr for a valid context.

Implements impeller::Context.

Definition at line 40 of file surface_context_vk.cc.

40 {
41 return parent_->GetSamplerLibrary();
42}

◆ GetShaderLibrary()

std::shared_ptr< ShaderLibrary > impeller::SurfaceContextVK::GetShaderLibrary ( ) const
overridevirtual

Returns the library of shaders used to specify the programmable stages of a pipeline.

Returns
The shader library. Can never be nullptr for a valid context.

Implements impeller::Context.

Definition at line 36 of file surface_context_vk.cc.

36 {
37 return parent_->GetShaderLibrary();
38}

◆ InitializeCommonlyUsedShadersIfNeeded()

void impeller::SurfaceContextVK::InitializeCommonlyUsedShadersIfNeeded ( ) const
overridevirtual

Run backend specific additional setup and create common shader variants.

This bootstrap is intended to improve the performance of several first frame benchmarks that are tracked in the flutter device lab. The workload includes initializing commonly used but not default shader variants, as well as forcing driver initialization.

Reimplemented from impeller::Context.

Definition at line 126 of file surface_context_vk.cc.

126 {
127 parent_->InitializeCommonlyUsedShadersIfNeeded();
128}

◆ IsValid()

bool impeller::SurfaceContextVK::IsValid ( ) const
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.

Returns
If the context is valid.

Implements impeller::Context.

Definition at line 28 of file surface_context_vk.cc.

28 {
29 return parent_->IsValid();
30}

◆ SetWindowSurface()

bool impeller::SurfaceContextVK::SetWindowSurface ( vk::UniqueSurfaceKHR  surface,
const ISize size 
)

Definition at line 65 of file surface_context_vk.cc.

66 {
67 auto swapchain = SwapchainVK::Create(parent_, std::move(surface), size);
68 if (!swapchain) {
69 VALIDATION_LOG << "Could not create swapchain.";
70 return false;
71 }
72 if (!swapchain->IsValid()) {
73 VALIDATION_LOG << "Could not create valid swapchain.";
74 return false;
75 }
76 swapchain_ = std::move(swapchain);
77 return true;
78}
static std::shared_ptr< SwapchainVK > Create(const std::shared_ptr< Context > &context, vk::UniqueSurfaceKHR surface, const ISize &size, bool enable_msaa=true)
VkSwapchainKHR swapchain
Definition main.cc:64
#define VALIDATION_LOG
Definition validation.h:73

◆ Shutdown()

void impeller::SurfaceContextVK::Shutdown ( )
overridevirtual

Force all pending asynchronous work to finish. This is achieved by deleting all owned concurrent message loops.

Implements impeller::Context.

Definition at line 61 of file surface_context_vk.cc.

61 {
62 parent_->Shutdown();
63}

◆ UpdateSurfaceSize()

void impeller::SurfaceContextVK::UpdateSurfaceSize ( const ISize size) const

Mark the current swapchain configuration as dirty, forcing it to be recreated on the next frame.

Definition at line 95 of file surface_context_vk.cc.

95 {
96 swapchain_->UpdateSurfaceSize(size);
97}

The documentation for this class was generated from the following files: