diff options
| author | Merry <git@mary.rs> | 2022-04-07 19:32:40 +0100 |
|---|---|---|
| committer | Merry <git@mary.rs> | 2022-04-07 19:44:07 +0100 |
| commit | bbc585881a69b899bfaa9c2982c87a2034d4331e (patch) | |
| tree | aa24a84a9a885da4a112d943ec267b02bba83e39 /src/video_core/renderer_vulkan/pipeline_statistics.cpp | |
| parent | 159ae5e47ceff0a44c1021379cbca601b36f4fb0 (diff) | |
video_core: Replace lock_guard with scoped_lock
Diffstat (limited to 'src/video_core/renderer_vulkan/pipeline_statistics.cpp')
| -rw-r--r-- | src/video_core/renderer_vulkan/pipeline_statistics.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_vulkan/pipeline_statistics.cpp b/src/video_core/renderer_vulkan/pipeline_statistics.cpp index bfec931a6..7ccadf084 100644 --- a/src/video_core/renderer_vulkan/pipeline_statistics.cpp +++ b/src/video_core/renderer_vulkan/pipeline_statistics.cpp @@ -57,7 +57,7 @@ void PipelineStatistics::Collect(VkPipeline pipeline) { stage_stats.basic_block_count = GetUint64(statistic); } } - std::lock_guard lock{mutex}; + std::scoped_lock lock{mutex}; collected_stats.push_back(stage_stats); } } @@ -66,7 +66,7 @@ void PipelineStatistics::Report() const { double num{}; Stats total; { - std::lock_guard lock{mutex}; + std::scoped_lock lock{mutex}; for (const Stats& stats : collected_stats) { total.code_size += stats.code_size; total.register_count += stats.register_count; |
