blob: 39a736cc0eba4cb5184e2b43deac5ef3b907cda5 (
plain)
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
|
#pragma once
#include "d3d10_include.h"
namespace dxvk {
/**
* \brief Device lock
*
* Lightweight RAII wrapper that implements
* a subset of the functionality provided by
* \c std::unique_lock, with the goal of being
* cheaper to construct and destroy.
*/
class D3D10DeviceLock {
public:
D3D10DeviceLock()
: m_mutex(nullptr) { }
D3D10DeviceLock(sync::RecursiveSpinlock& mutex)
: m_mutex(&mutex) {
mutex.lock();
}
D3D10DeviceLock(D3D10DeviceLock&& other)
: m_mutex(other.m_mutex) {
other.m_mutex = nullptr;
}
D3D10DeviceLock& operator = (D3D10DeviceLock&& other) {
if (m_mutex)
m_mutex->unlock();
m_mutex = other.m_mutex;
other.m_mutex = nullptr;
return *this;
}
~D3D10DeviceLock() {
if (unlikely(m_mutex != nullptr))
m_mutex->unlock();
}
private:
sync::RecursiveSpinlock* m_mutex;
};
/**
* \brief D3D10 device and D3D11 context lock
*
* Can be queried from the D3D10 device or from
* any D3D11 context in order to make individual
* calls thread-safe. Provides methods to lock
* the device or context explicitly.
*/
class D3D10Multithread : public ID3D10Multithread {
public:
D3D10Multithread(
IUnknown* pParent,
BOOL Protected);
~D3D10Multithread();
ULONG STDMETHODCALLTYPE AddRef() final;
ULONG STDMETHODCALLTYPE Release() final;
HRESULT STDMETHODCALLTYPE QueryInterface(
REFIID riid,
void** ppvObject) final;
void STDMETHODCALLTYPE Enter() final;
void STDMETHODCALLTYPE Leave() final;
BOOL STDMETHODCALLTYPE SetMultithreadProtected(
BOOL bMTProtect) final;
BOOL STDMETHODCALLTYPE GetMultithreadProtected() final;
D3D10DeviceLock AcquireLock() {
return unlikely(m_protected)
? D3D10DeviceLock(m_mutex)
: D3D10DeviceLock();
}
private:
IUnknown* m_parent;
BOOL m_protected;
sync::RecursiveSpinlock m_mutex;
};
}
|