Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
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/shell/gpu/gpu_surface_vulkan_impeller.h"
15#include "flutter/vulkan/vulkan_native_surface_android.h"
16
17namespace flutter {
18
20 const std::shared_ptr<AndroidContextVulkanImpeller>& android_context) {
21 is_valid_ = android_context->IsValid();
22
23 auto& context_vk =
24 impeller::ContextVK::Cast(*android_context->GetImpellerContext());
25 surface_context_vk_ = context_vk.CreateSurfaceContext();
26}
27
29
31 return is_valid_;
32}
33
37
39 GrDirectContext* gr_context) {
40 if (!IsValid()) {
41 return nullptr;
42 }
43
44 if (!native_window_ || !native_window_->IsValid()) {
45 return nullptr;
46 }
47
48 std::unique_ptr<GPUSurfaceVulkanImpeller> gpu_surface =
49 std::make_unique<GPUSurfaceVulkanImpeller>(surface_context_vk_);
50
51 if (!gpu_surface->IsValid()) {
52 return nullptr;
53 }
54
55 return gpu_surface;
56}
57
59 surface_context_vk_->UpdateSurfaceSize(
60 impeller::ISize{size.width(), size.height()});
61 return true;
62}
63
67
71
74 native_window_ = std::move(window);
75 bool success = native_window_ && native_window_->IsValid();
76 if (success) {
77 auto surface =
78 surface_context_vk_->CreateAndroidSurface(native_window_->handle());
79
80 if (!surface) {
81 FML_LOG(ERROR) << "Could not create a vulkan surface.";
82 return false;
83 }
84 auto size = native_window_->GetSize();
85 return surface_context_vk_->SetWindowSurface(
86 std::move(surface), impeller::ISize{size.width(), size.height()});
87 }
88
89 native_window_ = nullptr;
90 return false;
91}
92
93std::shared_ptr<impeller::Context>
95 return surface_context_vk_;
96}
97
98} // 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)
GLFWwindow * window
Definition main.cc:45
VkSurfaceKHR surface
Definition main.cc:49
#define FML_LOG(severity)
Definition logging.h:82
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
Type width
Definition size.h:22
#define ERROR(message)