Browse Source
Merge pull request #3859 from jbeich/clang
Unbreak build with Clang < 10
pull/15/merge
Mat M
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
2 deletions
-
src/video_core/fence_manager.h
|
|
|
@ -88,7 +88,8 @@ public: |
|
|
|
} |
|
|
|
PopAsyncFlushes(); |
|
|
|
if (current_fence->IsSemaphore()) { |
|
|
|
memory_manager.Write<u32>(current_fence->GetAddress(), current_fence->GetPayload()); |
|
|
|
memory_manager.template Write<u32>(current_fence->GetAddress(), |
|
|
|
current_fence->GetPayload()); |
|
|
|
} else { |
|
|
|
gpu.IncrementSyncPoint(current_fence->GetPayload()); |
|
|
|
} |
|
|
|
@ -134,7 +135,8 @@ private: |
|
|
|
} |
|
|
|
PopAsyncFlushes(); |
|
|
|
if (current_fence->IsSemaphore()) { |
|
|
|
memory_manager.Write<u32>(current_fence->GetAddress(), current_fence->GetPayload()); |
|
|
|
memory_manager.template Write<u32>(current_fence->GetAddress(), |
|
|
|
current_fence->GetPayload()); |
|
|
|
} else { |
|
|
|
gpu.IncrementSyncPoint(current_fence->GetPayload()); |
|
|
|
} |
|
|
|
|