Flutter Engine
 
Loading...
Searching...
No Matches
flutter::EmbedderSurfaceVulkan Class Referencefinal

#include <embedder_surface_vulkan.h>

Inheritance diagram for flutter::EmbedderSurfaceVulkan:
flutter::EmbedderSurface flutter::GPUSurfaceVulkanDelegate

Classes

struct  VulkanDispatchTable
 

Public Member Functions

 EmbedderSurfaceVulkan (uint32_t version, VkInstance instance, size_t instance_extension_count, const char **instance_extensions, size_t device_extension_count, const char **device_extensions, VkPhysicalDevice physical_device, VkDevice device, uint32_t queue_family_index, VkQueue queue, const VulkanDispatchTable &vulkan_dispatch_table, std::shared_ptr< EmbedderExternalViewEmbedder > external_view_embedder)
 
 ~EmbedderSurfaceVulkan () override
 
const vulkan::VulkanProcTablevk () override
 Obtain a reference to the Vulkan implementation's proc table.
 
FlutterVulkanImage AcquireImage (const DlISize &size) override
 Called by the engine to fetch a VkImage for writing the next frame.
 
bool PresentImage (VkImage image, VkFormat format) override
 Called by the engine once a frame has been rendered to the image and it's ready to be bound for further reading/writing.
 
- Public Member Functions inherited from flutter::EmbedderSurface
 EmbedderSurface ()
 
virtual ~EmbedderSurface ()
 
virtual std::shared_ptr< impeller::ContextCreateImpellerContext () const
 
- Public Member Functions inherited from flutter::GPUSurfaceVulkanDelegate
virtual ~GPUSurfaceVulkanDelegate ()
 

Detailed Description

Definition at line 19 of file embedder_surface_vulkan.h.

Constructor & Destructor Documentation

◆ EmbedderSurfaceVulkan()

flutter::EmbedderSurfaceVulkan::EmbedderSurfaceVulkan ( uint32_t  version,
VkInstance  instance,
size_t  instance_extension_count,
const char **  instance_extensions,
size_t  device_extension_count,
const char **  device_extensions,
VkPhysicalDevice  physical_device,
VkDevice  device,
uint32_t  queue_family_index,
VkQueue  queue,
const VulkanDispatchTable vulkan_dispatch_table,
std::shared_ptr< EmbedderExternalViewEmbedder external_view_embedder 
)

Definition at line 21 of file embedder_surface_vulkan.cc.

34 : vk_(fml::MakeRefCounted<vulkan::VulkanProcTable>(
35 vulkan_dispatch_table.get_instance_proc_address)),
36 device_(*vk_,
41 vulkan_dispatch_table_(vulkan_dispatch_table),
42 external_view_embedder_(std::move(external_view_embedder)) {
43 // Make sure all required members of the dispatch table are checked.
44 if (!vulkan_dispatch_table_.get_instance_proc_address ||
45 !vulkan_dispatch_table_.get_next_image ||
46 !vulkan_dispatch_table_.present_image) {
47 return;
48 }
49
50 bool success = vk_->SetupInstanceProcAddresses(
52 if (!success) {
53 FML_LOG(ERROR) << "Could not setup instance proc addresses.";
54 return;
55 }
56 success =
58 if (!success) {
59 FML_LOG(ERROR) << "Could not setup device proc addresses.";
60 return;
61 }
62 if (!vk_->IsValid()) {
63 FML_LOG(ERROR) << "VulkanProcTable invalid.";
64 return;
65 }
66
67 main_context_ = CreateGrContext(instance, version, instance_extension_count,
68 instance_extensions, device_extension_count,
69 device_extensions, ContextType::kRender);
70 // TODO(96954): Add a second (optional) queue+family index to the Embedder API
71 // to allow embedders to specify a dedicated transfer queue for
72 // use by the resource context. Queue families with graphics
73 // capability can always be used for memory transferring, but it
74 // would be advantageous to use a dedicated transter queue here.
75 resource_context_ = CreateGrContext(
76 instance, version, instance_extension_count, instance_extensions,
77 device_extension_count, device_extensions, ContextType::kResource);
78
79 valid_ = main_context_ && resource_context_;
80}
bool SetupInstanceProcAddresses(const VulkanHandle< VkInstance > &instance)
bool SetupDeviceProcAddresses(const VulkanHandle< VkDevice > &device)
VkPhysicalDevice physical_device
Definition main.cc:67
VkDevice device
Definition main.cc:69
VkInstance instance
Definition main.cc:64
VkQueue queue
Definition main.cc:71
uint32_t queue_family_index
Definition main.cc:70
#define FML_LOG(severity)
Definition logging.h:101
@ kRender
The context is used to render to a texture or renderbuffer.
std::function< bool(VkImage image, VkFormat format)> present_image
std::function< FlutterVulkanImage(const DlISize &frame_size)> get_next_image

References physical_device.

◆ ~EmbedderSurfaceVulkan()

flutter::EmbedderSurfaceVulkan::~EmbedderSurfaceVulkan ( )
override

Definition at line 82 of file embedder_surface_vulkan.cc.

82 {
83 if (main_context_) {
84 main_context_->releaseResourcesAndAbandonContext();
85 }
86 if (resource_context_) {
87 resource_context_->releaseResourcesAndAbandonContext();
88 }
89}

Member Function Documentation

◆ AcquireImage()

FlutterVulkanImage flutter::EmbedderSurfaceVulkan::AcquireImage ( const DlISize size)
overridevirtual

Called by the engine to fetch a VkImage for writing the next frame.

Implements flutter::GPUSurfaceVulkanDelegate.

Definition at line 97 of file embedder_surface_vulkan.cc.

97 {
98 return vulkan_dispatch_table_.get_next_image(size);
99}
it will be possible to load the file into Perfetto s trace viewer use test Running tests that layout and measure text will not yield consistent results across various platforms Enabling this option will make font resolution default to the Ahem test font on all disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size

References flutter::EmbedderSurfaceVulkan::VulkanDispatchTable::get_next_image, and flutter::size.

◆ PresentImage()

bool flutter::EmbedderSurfaceVulkan::PresentImage ( VkImage  image,
VkFormat  format 
)
overridevirtual

Called by the engine once a frame has been rendered to the image and it's ready to be bound for further reading/writing.

Implements flutter::GPUSurfaceVulkanDelegate.

Definition at line 102 of file embedder_surface_vulkan.cc.

102 {
103 return vulkan_dispatch_table_.present_image(image, format);
104}
FlutterVulkanImage * image

References format, image, and flutter::EmbedderSurfaceVulkan::VulkanDispatchTable::present_image.

◆ vk()

const vulkan::VulkanProcTable & flutter::EmbedderSurfaceVulkan::vk ( )
overridevirtual

Obtain a reference to the Vulkan implementation's proc table.

Implements flutter::GPUSurfaceVulkanDelegate.

Definition at line 92 of file embedder_surface_vulkan.cc.

92 {
93 return *vk_;
94}

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