mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-11-29 01:24:11 +01:00
[dxgi] Fix global variable declarations
This commit is contained in:
parent
8bca36460a
commit
c745136f67
@ -9,10 +9,10 @@
|
||||
|
||||
namespace dxvk {
|
||||
|
||||
Singleton<DxvkInstance> g_dxvkInstance;
|
||||
static Singleton<DxvkInstance> g_dxvkInstance;
|
||||
|
||||
std::mutex s_globalHDRStateMutex;
|
||||
DXVK_VK_GLOBAL_HDR_STATE s_globalHDRState{};
|
||||
static dxvk::mutex s_globalHDRStateMutex;
|
||||
static DXVK_VK_GLOBAL_HDR_STATE s_globalHDRState{};
|
||||
|
||||
DxgiVkFactory::DxgiVkFactory(DxgiFactory* pFactory)
|
||||
: m_factory(pFactory) {
|
||||
|
Loading…
Reference in New Issue
Block a user