forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vulkan_native_surface_magma.cc
66 lines (51 loc) · 1.92 KB
/
vulkan_native_surface_magma.cc
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
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "flutter/vulkan/vulkan_native_surface_magma.h"
namespace vulkan {
VulkanNativeSurfaceMagma::VulkanNativeSurfaceMagma() = default;
VulkanNativeSurfaceMagma::VulkanNativeSurfaceMagma(int32_t width,
int32_t height) {
size_ = SkISize::Make(width, height);
}
VulkanNativeSurfaceMagma::~VulkanNativeSurfaceMagma() = default;
const char* VulkanNativeSurfaceMagma::GetExtensionName() const {
return VK_KHR_MAGMA_SURFACE_EXTENSION_NAME;
}
uint32_t VulkanNativeSurfaceMagma::GetSkiaExtensionName() const {
// There is no counterpart in Skia that recognizes the Magma extension name.
// However, Flutter handles all setup anyway, so this is unnecessary.
return 0;
}
VkSurfaceKHR VulkanNativeSurfaceMagma::CreateSurfaceHandle(
vulkan::VulkanProcTable& vk,
const vulkan::VulkanHandle<VkInstance>& instance) const {
if (!vk.IsValid() || !instance) {
return VK_NULL_HANDLE;
}
const VkMagmaSurfaceCreateInfoKHR create_info = {
.sType = VK_STRUCTURE_TYPE_MAGMA_SURFACE_CREATE_INFO_KHR,
.pNext = nullptr,
};
VkSurfaceKHR surface = VK_NULL_HANDLE;
if (VK_CALL_LOG_ERROR(vk.CreateMagmaSurfaceKHR(
instance, &create_info, nullptr /* allocator */, &surface)) !=
VK_SUCCESS) {
return VK_NULL_HANDLE;
}
return surface;
}
bool VulkanNativeSurfaceMagma::IsValid() const {
// vkCreateMagmaSurfaceKHR doesn't actually take a native handle. So there is
// nothing to check the validity of.
return true;
}
SkISize VulkanNativeSurfaceMagma::GetSize() const {
if (size_.width() != 0 && size_.height() != 0) {
return size_;
} else {
// TODO: Don't hardcode this after we get a proper Fuchsia Display API.
return SkISize::Make(2160, 1440);
}
}
} // namespace vulkan