Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
GraphiteDawnVulkanWindowContext_unix.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2022 Google LLC
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
10
14
15namespace {
16
17class GraphiteDawnVulkanWindowContext_unix : public GraphiteDawnWindowContext {
18public:
19 GraphiteDawnVulkanWindowContext_unix(const XlibWindowInfo& info, const DisplayParams& params);
20
21 ~GraphiteDawnVulkanWindowContext_unix() override;
22
23 bool onInitializeContext() override;
24 void onDestroyContext() override;
25 void resize(int w, int h) override;
26
27private:
28 Display* fDisplay;
29 XWindow fWindow;
30};
31
32GraphiteDawnVulkanWindowContext_unix::GraphiteDawnVulkanWindowContext_unix(
33 const XlibWindowInfo& info,
34 const DisplayParams& params)
35 : GraphiteDawnWindowContext(params, wgpu::TextureFormat::BGRA8Unorm)
36 , fDisplay(info.fDisplay)
37 , fWindow(info.fWindow) {
39 int x, y;
40 unsigned int border_width, depth;
41 unsigned int width, height;
42 XGetGeometry(fDisplay, fWindow, &root, &x, &y, &width, &height, &border_width, &depth);
43 this->initializeContext(width, height);
44}
45
46GraphiteDawnVulkanWindowContext_unix::~GraphiteDawnVulkanWindowContext_unix() {
47 this->destroyContext();
48}
49
50bool GraphiteDawnVulkanWindowContext_unix::onInitializeContext() {
51 SkASSERT(!!fWindow);
52
53 auto device = this->createDevice(wgpu::BackendType::Vulkan);
54 if (!device) {
56 return false;
57 }
58
59 wgpu::SurfaceDescriptorFromXlibWindow surfaceChainedDesc;
60 surfaceChainedDesc.display = fDisplay;
61 surfaceChainedDesc.window = fWindow;
62
63 wgpu::SurfaceDescriptor surfaceDesc;
64 surfaceDesc.nextInChain = &surfaceChainedDesc;
65
66 auto surface = wgpu::Instance(fInstance->Get()).CreateSurface(&surfaceDesc);
67 if (!surface) {
68 SkASSERT(false);
69 return false;
70 }
71
72 fDevice = std::move(device);
73 fSurface = std::move(surface);
74 fSwapChain = this->createSwapChain();
75
76 return true;
77}
78
79void GraphiteDawnVulkanWindowContext_unix::onDestroyContext() {}
80
81void GraphiteDawnVulkanWindowContext_unix::resize(int w, int h) {
82 fSwapChain = this->createSwapChain();
83}
84
85} // anonymous namespace
86
87namespace skwindow {
88
89std::unique_ptr<WindowContext> MakeGraphiteDawnVulkanForXlib(const XlibWindowInfo& info,
90 const DisplayParams& params) {
91 std::unique_ptr<WindowContext> ctx(new GraphiteDawnVulkanWindowContext_unix(info, params));
92 if (!ctx->isValid()) {
93 return nullptr;
94 }
95 return ctx;
96}
97
98} // namespace skwindow
static void info(const char *fmt,...) SK_PRINTF_LIKE(1
Definition DM.cpp:213
#define SkASSERT(cond)
Definition SkAssert.h:116
virtual void resize(int w, int h)=0
const EmbeddedViewParams * params
VkDevice device
Definition main.cc:53
VkSurfaceKHR surface
Definition main.cc:49
double y
double x
SkScalar w
SkScalar h
int32_t height
int32_t width