1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-18 20:52:10 +01:00

[util] Add helper for lazy initialization

a
This commit is contained in:
Philip Rebohle 2019-07-30 19:29:02 +02:00
parent 23379b6b9c
commit 9a2da555c0
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

40
src/util/util_lazy.h Normal file
View File

@ -0,0 +1,40 @@
#pragma once
#include <mutex>
namespace dxvk {
/**
* \brief Lazy-initialized object
*
* Creates an object on demand with
* the given constructor arguments.
*/
template<typename T>
class Lazy {
public:
template<typename... Args>
T& get(Args... args) {
if (m_object)
return *m_object;
std::lock_guard lock(m_mutex);
if (!m_object) {
m_object = std::make_unique<T>(
std::forward<Args>(args)...);
}
return *m_object;
}
private:
std::mutex m_mutex;
std::unique_ptr<T> m_object;
};
}