forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 2
/
vulkan_window.h
81 lines (62 loc) · 2.4 KB
/
vulkan_window.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FLUTTER_VULKAN_VULKAN_WINDOW_H_
#define FLUTTER_VULKAN_VULKAN_WINDOW_H_
#include <memory>
#include <tuple>
#include <utility>
#include <vector>
#include "flutter/flutter_vma/flutter_skia_vma.h"
#include "flutter/fml/compiler_specific.h"
#include "flutter/fml/macros.h"
#include "flutter/vulkan/procs/vulkan_proc_table.h"
#include "third_party/skia/include/core/SkRefCnt.h"
#include "third_party/skia/include/core/SkSize.h"
#include "third_party/skia/include/core/SkSurface.h"
#include "third_party/skia/include/gpu/GrDirectContext.h"
#include "third_party/skia/include/gpu/vk/GrVkBackendContext.h"
namespace vulkan {
class VulkanNativeSurface;
class VulkanDevice;
class VulkanSurface;
class VulkanSwapchain;
class VulkanImage;
class VulkanApplication;
class VulkanBackbuffer;
class VulkanWindow {
public:
//------------------------------------------------------------------------------
/// @brief Construct a VulkanWindow. Let it implicitly create a
/// GrDirectContext.
///
VulkanWindow(fml::RefPtr<VulkanProcTable> proc_table,
std::unique_ptr<VulkanNativeSurface> native_surface);
//------------------------------------------------------------------------------
/// @brief Construct a VulkanWindow. Let reuse an existing
/// GrDirectContext built by another VulkanWindow.
///
VulkanWindow(const sk_sp<GrDirectContext>& context,
fml::RefPtr<VulkanProcTable> proc_table,
std::unique_ptr<VulkanNativeSurface> native_surface);
~VulkanWindow();
bool IsValid() const;
GrDirectContext* GetSkiaGrContext();
sk_sp<SkSurface> AcquireSurface();
bool SwapBuffers();
private:
bool valid_;
fml::RefPtr<VulkanProcTable> vk;
std::unique_ptr<VulkanApplication> application_;
std::unique_ptr<VulkanDevice> logical_device_;
std::unique_ptr<VulkanSurface> surface_;
std::unique_ptr<VulkanSwapchain> swapchain_;
sk_sp<skgpu::VulkanMemoryAllocator> memory_allocator_;
sk_sp<GrDirectContext> skia_gr_context_;
bool CreateSkiaGrContext();
bool CreateSkiaBackendContext(GrVkBackendContext* context);
[[nodiscard]] bool RecreateSwapchain();
FML_DISALLOW_COPY_AND_ASSIGN(VulkanWindow);
};
} // namespace vulkan
#endif // FLUTTER_VULKAN_VULKAN_WINDOW_H_