Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
khr_swapchain_vk.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
6
7#include "flutter/fml/trace_event.h"
10
11namespace impeller {
12
13KHRSwapchainVK::KHRSwapchainVK(const std::shared_ptr<Context>& context,
14 vk::UniqueSurfaceKHR surface,
15 const ISize& size,
16 bool enable_msaa)
17 : size_(size), enable_msaa_(enable_msaa) {
18 auto impl = KHRSwapchainImplVK::Create(context, //
19 std::move(surface), //
20 size_, //
21 enable_msaa_ //
22 );
23 if (!impl || !impl->IsValid()) {
24 VALIDATION_LOG << "Failed to create SwapchainVK implementation.";
25 return;
26 }
27 impl_ = std::move(impl);
28}
29
30KHRSwapchainVK::~KHRSwapchainVK() = default;
31
32bool KHRSwapchainVK::IsValid() const {
33 return impl_ ? impl_->IsValid() : false;
34}
35
36void KHRSwapchainVK::UpdateSurfaceSize(const ISize& size) {
37 // Update the size of the swapchain. On the next acquired drawable,
38 // the sizes may no longer match, forcing the swapchain to be recreated.
39 size_ = size;
40}
41
42std::unique_ptr<Surface> KHRSwapchainVK::AcquireNextDrawable() {
43 if (!IsValid()) {
44 return nullptr;
45 }
46
47 TRACE_EVENT0("impeller", __FUNCTION__);
48
49 auto result = impl_->AcquireNextDrawable();
50 if (!result.out_of_date && size_ == impl_->GetSize()) {
51 return std::move(result.surface);
52 }
53
54 TRACE_EVENT0("impeller", "RecreateSwapchain");
55
56 // This swapchain implementation indicates that it is out of date. Tear it
57 // down and make a new one.
58 auto context = impl_->GetContext();
59 auto [surface, old_swapchain] = impl_->DestroySwapchain();
60
61 auto new_impl = KHRSwapchainImplVK::Create(context, //
62 std::move(surface), //
63 size_, //
64 enable_msaa_, //
65 *old_swapchain //
66 );
67 if (!new_impl || !new_impl->IsValid()) {
68 VALIDATION_LOG << "Could not update swapchain.";
69 // The old swapchain is dead because we took its surface. This is
70 // unrecoverable.
71 impl_.reset();
72 return nullptr;
73 }
74 impl_ = std::move(new_impl);
75
76 //----------------------------------------------------------------------------
77 /// We managed to recreate the swapchain in the new configuration. Try again.
78 ///
79 return AcquireNextDrawable();
80}
81
82vk::Format KHRSwapchainVK::GetSurfaceFormat() const {
83 return IsValid() ? impl_->GetSurfaceFormat() : vk::Format::eUndefined;
84}
85
86} // namespace impeller
VkSurfaceKHR surface
Definition main.cc:49
GAsyncResult * result
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
TSize< int64_t > ISize
Definition size.h:138
#define TRACE_EVENT0(category_group, name)
#define VALIDATION_LOG
Definition validation.h:73