Flutter Engine
The Flutter Engine
android_surface_vulkan_impeller.cc
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "flutter/shell/platform/android/android_surface_vulkan_impeller.h"
6
7#include <memory>
8#include <utility>
9
10#include "flutter/fml/concurrent_message_loop.h"
11#include "flutter/fml/logging.h"
12#include "flutter/fml/memory/ref_ptr.h"
13#include "flutter/impeller/renderer/backend/vulkan/context_vk.h"
14#include "flutter/impeller/renderer/backend/vulkan/swapchain/swapchain_vk.h"
15#include "flutter/shell/gpu/gpu_surface_vulkan_impeller.h"
16#include "flutter/vulkan/vulkan_native_surface_android.h"
17
18namespace flutter {
19
21 const std::shared_ptr<AndroidContextVulkanImpeller>& android_context) {
22 is_valid_ = android_context->IsValid();
23
24 auto& context_vk =
25 impeller::ContextVK::Cast(*android_context->GetImpellerContext());
26 surface_context_vk_ = context_vk.CreateSurfaceContext();
27 eager_gpu_surface_ =
28 std::make_unique<GPUSurfaceVulkanImpeller>(surface_context_vk_);
29}
30
32
34 return is_valid_;
35}
36
38 // Nothing to do.
39}
40
42 GrDirectContext* gr_context) {
43 if (!IsValid()) {
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}
68
70 surface_context_vk_->UpdateSurfaceSize(
71 impeller::ISize{size.width(), size.height()});
72 return true;
73}
74
76 return true;
77}
78
80 return true;
81}
82
85 if (window && (native_window_ == window)) {
86 return OnScreenSurfaceResize(window->GetSize());
87 }
88
89 native_window_ = nullptr;
90
91 if (!window || !window->IsValid()) {
92 return false;
93 }
94
96 std::reinterpret_pointer_cast<impeller::Context>(
97 surface_context_vk_->GetParent()),
98 window->handle());
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}
107
108std::shared_ptr<impeller::Context>
110 return surface_context_vk_;
111}
112
113} // namespace flutter
bool SetNativeWindow(fml::RefPtr< AndroidNativeWindow > window) override
AndroidSurfaceVulkanImpeller(const std::shared_ptr< AndroidContextVulkanImpeller > &android_context)
std::unique_ptr< Surface > CreateGPUSurface(GrDirectContext *gr_context) override
std::shared_ptr< impeller::Context > GetImpellerContext() override
bool OnScreenSurfaceResize(const SkISize &size) override
static ContextVK & Cast(Context &base)
Definition: backend_cast.h:13
static std::shared_ptr< SwapchainVK > Create(const std::shared_ptr< Context > &context, vk::UniqueSurfaceKHR surface, const ISize &size, bool enable_msaa=true)
Definition: swapchain_vk.cc:18
VkSwapchainKHR swapchain
Definition: main.cc:64
GLFWwindow * window
Definition: main.cc:45
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
Definition: switches.h:259
Definition: SkSize.h:16