mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-06-05 14:45:04 -06:00
vk: Use standard C++
This commit is contained in:
parent
2ae9753d79
commit
2c8c788d81
@ -14,7 +14,7 @@ namespace vk
|
|||||||
public:
|
public:
|
||||||
inline void flush_all()
|
inline void flush_all()
|
||||||
{
|
{
|
||||||
reader_lock lock(m_notifications_lock);
|
std::shared_lock lock(m_notifications_lock);
|
||||||
|
|
||||||
for (auto& set : m_notification_list)
|
for (auto& set : m_notification_list)
|
||||||
{
|
{
|
||||||
@ -44,7 +44,7 @@ namespace vk
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
rsx::simple_array<descriptor_set*> m_notification_list;
|
rsx::simple_array<descriptor_set*> m_notification_list;
|
||||||
shared_mutex m_notifications_lock;
|
std::shared_mutex m_notifications_lock;
|
||||||
|
|
||||||
dispatch_manager(const dispatch_manager&) = delete;
|
dispatch_manager(const dispatch_manager&) = delete;
|
||||||
dispatch_manager& operator = (const dispatch_manager&) = delete;
|
dispatch_manager& operator = (const dispatch_manager&) = delete;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user