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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gpu/vulkan/semaphore_handle.h"
#include "base/logging.h"
#include "build/build_config.h"
#if BUILDFLAG(IS_POSIX)
#include <unistd.h>
#include "base/posix/eintr_wrapper.h"
#endif
#if BUILDFLAG(IS_FUCHSIA)
#include "base/fuchsia/fuchsia_logging.h"
#endif
#if BUILDFLAG(IS_WIN)
#include <windows.h>
#endif
namespace gpu {
SemaphoreHandle::SemaphoreHandle() = default;
SemaphoreHandle::SemaphoreHandle(VkExternalSemaphoreHandleTypeFlagBits type,
PlatformHandle handle)
: type_(type), handle_(std::move(handle)) {}
SemaphoreHandle::SemaphoreHandle(SemaphoreHandle&&) = default;
SemaphoreHandle::~SemaphoreHandle() = default;
SemaphoreHandle& SemaphoreHandle::operator=(SemaphoreHandle&&) = default;
SemaphoreHandle::SemaphoreHandle(gfx::GpuFenceHandle fence_handle) {
#if BUILDFLAG(IS_FUCHSIA)
// Fuchsia's Vulkan driver allows zx::event to be obtained from a
// VkSemaphore, which can then be used to submit present work, see
// https://fuchsia.dev/reference/fidl/fuchsia.ui.scenic.
Init(VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_ZIRCON_EVENT_BIT_FUCHSIA,
fence_handle.Release());
#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_ANDROID)
Init(VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT_KHR,
fence_handle.Release());
#elif BUILDFLAG(IS_POSIX)
Init(VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR,
fence_handle.Release());
#elif BUILDFLAG(IS_WIN)
Init(VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT,
fence_handle.Release());
#endif // BUILDFLAG(IS_FUCHSIA)
}
void SemaphoreHandle::Init(VkExternalSemaphoreHandleTypeFlagBits type,
PlatformHandle handle) {
type_ = type;
handle_ = std::move(handle);
}
gfx::GpuFenceHandle SemaphoreHandle::ToGpuFenceHandle() && {
gfx::GpuFenceHandle fence_handle;
#if BUILDFLAG(IS_FUCHSIA)
// Fuchsia's Vulkan driver allows zx::event to be obtained from a
// VkSemaphore, which can then be used to submit present work, see
// https://fuchsia.dev/reference/fidl/fuchsia.ui.scenic.
fence_handle.Adopt(TakeHandle());
#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_ANDROID)
if (type_ == VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT_KHR) {
fence_handle.Adopt(TakeHandle());
} else {
DLOG(ERROR) << "Unable to convert SemaphoreHandle to GpuFenceHandle";
}
#elif BUILDFLAG(IS_POSIX)
fence_handle.Adopt(TakeHandle());
#elif BUILDFLAG(IS_WIN)
fence_handle.Adopt(TakeHandle());
#endif // BUILDFLAG(IS_FUCHSIA)
return fence_handle;
}
SemaphoreHandle SemaphoreHandle::Duplicate() const {
if (!is_valid())
return SemaphoreHandle();
#if BUILDFLAG(IS_POSIX)
return SemaphoreHandle(type_,
base::ScopedFD(HANDLE_EINTR(dup(handle_.get()))));
#elif BUILDFLAG(IS_WIN)
HANDLE handle_dup;
if (!::DuplicateHandle(::GetCurrentProcess(), handle_.Get(),
::GetCurrentProcess(), &handle_dup, 0, FALSE,
DUPLICATE_SAME_ACCESS)) {
return SemaphoreHandle();
}
return SemaphoreHandle(type_, base::win::ScopedHandle(handle_dup));
#elif BUILDFLAG(IS_FUCHSIA)
zx::event event_dup;
zx_status_t status = handle_.duplicate(ZX_RIGHT_SAME_RIGHTS, &event_dup);
if (status != ZX_OK) {
ZX_DLOG(ERROR, status) << "zx_handle_duplicate";
return SemaphoreHandle();
}
return SemaphoreHandle(type_, std::move(event_dup));
#else
#error Unsupported OS
#endif
}
} // namespace gpu
|