summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Mat M2020-05-01 23:39:12 -0400
committerGravatar GitHub2020-05-01 23:39:12 -0400
commit5f2a9a4c8612d96fa70b3ca386e9de22aa9b8361 (patch)
tree719b1e07cce69aa258381b89eecf56dd2ec45107
parentMerge pull request #3833 from qwell/caps_su-32-stub (diff)
parentfixed_pipeline_state: explicitly use template keyword after 1f345ebe3a55 (diff)
downloadyuzu-5f2a9a4c8612d96fa70b3ca386e9de22aa9b8361.tar.gz
yuzu-5f2a9a4c8612d96fa70b3ca386e9de22aa9b8361.tar.xz
yuzu-5f2a9a4c8612d96fa70b3ca386e9de22aa9b8361.zip
Merge pull request #3859 from jbeich/clang
Unbreak build with Clang < 10
Diffstat (limited to '')
-rw-r--r--src/video_core/fence_manager.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/video_core/fence_manager.h b/src/video_core/fence_manager.h
index dabd1588c..8b2a6a42c 100644
--- a/src/video_core/fence_manager.h
+++ b/src/video_core/fence_manager.h
@@ -88,7 +88,8 @@ public:
88 } 88 }
89 PopAsyncFlushes(); 89 PopAsyncFlushes();
90 if (current_fence->IsSemaphore()) { 90 if (current_fence->IsSemaphore()) {
91 memory_manager.Write<u32>(current_fence->GetAddress(), current_fence->GetPayload()); 91 memory_manager.template Write<u32>(current_fence->GetAddress(),
92 current_fence->GetPayload());
92 } else { 93 } else {
93 gpu.IncrementSyncPoint(current_fence->GetPayload()); 94 gpu.IncrementSyncPoint(current_fence->GetPayload());
94 } 95 }
@@ -134,7 +135,8 @@ private:
134 } 135 }
135 PopAsyncFlushes(); 136 PopAsyncFlushes();
136 if (current_fence->IsSemaphore()) { 137 if (current_fence->IsSemaphore()) {
137 memory_manager.Write<u32>(current_fence->GetAddress(), current_fence->GetPayload()); 138 memory_manager.template Write<u32>(current_fence->GetAddress(),
139 current_fence->GetPayload());
138 } else { 140 } else {
139 gpu.IncrementSyncPoint(current_fence->GetPayload()); 141 gpu.IncrementSyncPoint(current_fence->GetPayload());
140 } 142 }