#include <android_surface_vulkan_impeller.h>
◆ AndroidSurfaceVulkanImpeller()
flutter::AndroidSurfaceVulkanImpeller::AndroidSurfaceVulkanImpeller |
( |
const std::shared_ptr< AndroidContextVulkanImpeller > & |
android_context | ) |
|
|
explicit |
Definition at line 20 of file android_surface_vulkan_impeller.cc.
21 {
22 is_valid_ = android_context->IsValid();
23
24 auto& context_vk =
26 surface_context_vk_ = context_vk.CreateSurfaceContext();
27 eager_gpu_surface_ =
28 std::make_unique<GPUSurfaceVulkanImpeller>(surface_context_vk_);
29}
static ContextVK & Cast(Context &base)
◆ ~AndroidSurfaceVulkanImpeller()
flutter::AndroidSurfaceVulkanImpeller::~AndroidSurfaceVulkanImpeller |
( |
| ) |
|
|
overridedefault |
◆ CreateGPUSurface()
std::unique_ptr< Surface > flutter::AndroidSurfaceVulkanImpeller::CreateGPUSurface |
( |
GrDirectContext * |
gr_context | ) |
|
|
overridevirtual |
Implements flutter::AndroidSurface.
Definition at line 41 of file android_surface_vulkan_impeller.cc.
42 {
44 return nullptr;
45 }
46
47 if (!native_window_ || !native_window_->IsValid()) {
48 return nullptr;
49 }
50
51 if (eager_gpu_surface_) {
52 auto gpu_surface = std::move(eager_gpu_surface_);
53 if (!gpu_surface->IsValid()) {
54 return nullptr;
55 }
56 return gpu_surface;
57 }
58
59 std::unique_ptr<GPUSurfaceVulkanImpeller> gpu_surface =
60 std::make_unique<GPUSurfaceVulkanImpeller>(surface_context_vk_);
61
62 if (!gpu_surface->IsValid()) {
63 return nullptr;
64 }
65
66 return gpu_surface;
67}
bool IsValid() const override
◆ GetImpellerContext()
std::shared_ptr< impeller::Context > flutter::AndroidSurfaceVulkanImpeller::GetImpellerContext |
( |
| ) |
|
|
overridevirtual |
◆ IsValid()
bool flutter::AndroidSurfaceVulkanImpeller::IsValid |
( |
| ) |
const |
|
overridevirtual |
◆ OnScreenSurfaceResize()
bool flutter::AndroidSurfaceVulkanImpeller::OnScreenSurfaceResize |
( |
const SkISize & |
size | ) |
|
|
overridevirtual |
Implements flutter::AndroidSurface.
Definition at line 69 of file android_surface_vulkan_impeller.cc.
69 {
70 surface_context_vk_->UpdateSurfaceSize(
72 return true;
73}
it will be possible to load the file into Perfetto s trace viewer 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
◆ ResourceContextClearCurrent()
bool flutter::AndroidSurfaceVulkanImpeller::ResourceContextClearCurrent |
( |
| ) |
|
|
overridevirtual |
◆ ResourceContextMakeCurrent()
bool flutter::AndroidSurfaceVulkanImpeller::ResourceContextMakeCurrent |
( |
| ) |
|
|
overridevirtual |
◆ SetNativeWindow()
Implements flutter::AndroidSurface.
Definition at line 83 of file android_surface_vulkan_impeller.cc.
84 {
87 }
88
89 native_window_ = nullptr;
90
92 return false;
93 }
94
96 std::reinterpret_pointer_cast<impeller::Context>(
97 surface_context_vk_->GetParent()),
99
100 if (surface_context_vk_->SetSwapchain(std::move(
swapchain))) {
101 native_window_ = std::move(
window);
102 return true;
103 }
104
105 return false;
106}
bool OnScreenSurfaceResize(const SkISize &size) override
static std::shared_ptr< SwapchainVK > Create(const std::shared_ptr< Context > &context, vk::UniqueSurfaceKHR surface, const ISize &size, bool enable_msaa=true)
◆ TeardownOnScreenContext()
void flutter::AndroidSurfaceVulkanImpeller::TeardownOnScreenContext |
( |
| ) |
|
|
overridevirtual |
The documentation for this class was generated from the following files: