forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vulkan_handle.h
80 lines (58 loc) · 1.9 KB
/
vulkan_handle.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
// Copyright 2016 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.
#ifndef FLUTTER_VULKAN_VULKAN_HANDLE_H_
#define FLUTTER_VULKAN_VULKAN_HANDLE_H_
#include <functional>
#include "lib/fxl/logging.h"
#include "lib/fxl/macros.h"
#include "vulkan_interface.h"
namespace vulkan {
template <class T>
class VulkanHandle {
public:
using Handle = T;
using Disposer = std::function<void(Handle)>;
VulkanHandle() : handle_(VK_NULL_HANDLE) {}
VulkanHandle(Handle handle, Disposer disposer = nullptr)
: handle_(handle), disposer_(disposer) {}
VulkanHandle(VulkanHandle&& other)
: handle_(other.handle_), disposer_(other.disposer_) {
other.handle_ = VK_NULL_HANDLE;
other.disposer_ = nullptr;
}
~VulkanHandle() { DisposeIfNecessary(); }
VulkanHandle& operator=(VulkanHandle&& other) {
if (handle_ != other.handle_) {
DisposeIfNecessary();
}
handle_ = other.handle_;
disposer_ = other.disposer_;
other.handle_ = VK_NULL_HANDLE;
other.disposer_ = nullptr;
return *this;
}
operator bool() const { return handle_ != VK_NULL_HANDLE; }
operator Handle() const { return handle_; }
/// Relinquish responsibility of collecting the underlying handle when this
/// object is collected. It is the responsibility of the caller to ensure that
/// the lifetime of the handle extends past the lifetime of this object.
void ReleaseOwnership() { disposer_ = nullptr; }
void Reset() { DisposeIfNecessary(); }
private:
Handle handle_;
Disposer disposer_;
void DisposeIfNecessary() {
if (handle_ == VK_NULL_HANDLE) {
return;
}
if (disposer_) {
disposer_(handle_);
}
handle_ = VK_NULL_HANDLE;
disposer_ = nullptr;
}
FXL_DISALLOW_COPY_AND_ASSIGN(VulkanHandle);
};
} // namespace vulkan
#endif // FLUTTER_VULKAN_VULKAN_HANDLE_H_