summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/puller.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2022-11-24 14:02:58 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2022-11-24 20:57:16 +0100
commit3b582d5fb2ca19d1a45f9675244021a3d302c9ff (patch)
treee0e4808844a61b8b67f77ecbf0692c88a8c2673a /src/video_core/engines/puller.cpp
parentMerge pull request #9299 from lioncash/cast (diff)
downloadyuzu-3b582d5fb2ca19d1a45f9675244021a3d302c9ff.tar
yuzu-3b582d5fb2ca19d1a45f9675244021a3d302c9ff.tar.gz
yuzu-3b582d5fb2ca19d1a45f9675244021a3d302c9ff.tar.bz2
yuzu-3b582d5fb2ca19d1a45f9675244021a3d302c9ff.tar.lz
yuzu-3b582d5fb2ca19d1a45f9675244021a3d302c9ff.tar.xz
yuzu-3b582d5fb2ca19d1a45f9675244021a3d302c9ff.tar.zst
yuzu-3b582d5fb2ca19d1a45f9675244021a3d302c9ff.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/engines/puller.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/engines/puller.cpp b/src/video_core/engines/puller.cpp
index 4d2278811..c308ba3fc 100644
--- a/src/video_core/engines/puller.cpp
+++ b/src/video_core/engines/puller.cpp
@@ -118,7 +118,7 @@ void Puller::ProcessSemaphoreRelease() {
std::function<void()> operation([this, sequence_address, payload] {
memory_manager.Write<u32>(sequence_address, payload);
});
- rasterizer->SyncOperation(std::move(operation));
+ rasterizer->SignalFence(std::move(operation));
}
void Puller::ProcessSemaphoreAcquire() {
@@ -151,8 +151,8 @@ void Puller::CallPullerMethod(const MethodCall& method_call) {
case BufferMethods::SemaphoreAddressLow:
case BufferMethods::SemaphoreSequencePayload:
case BufferMethods::SyncpointPayload:
- break;
case BufferMethods::WrcacheFlush:
+ break;
case BufferMethods::RefCnt:
rasterizer->SignalReference();
break;