summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu_asynch.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-06-08 02:41:06 +0200
committerFernandoS27 <fsahmkow27@gmail.com>2019-07-05 21:49:14 +0200
commit8942047d419f6d2d0c56adad689fbf3bcd4d2961 (patch)
treeaa2dd5b6aeef25c9fd5543a2a4ef267a7152b052 /src/video_core/gpu_asynch.cpp
parentnv_services: Implement NvQueryEvent, NvCtrlEventWait, NvEventRegister, NvEventUnregister (diff)
downloadyuzu-8942047d419f6d2d0c56adad689fbf3bcd4d2961.tar
yuzu-8942047d419f6d2d0c56adad689fbf3bcd4d2961.tar.gz
yuzu-8942047d419f6d2d0c56adad689fbf3bcd4d2961.tar.bz2
yuzu-8942047d419f6d2d0c56adad689fbf3bcd4d2961.tar.lz
yuzu-8942047d419f6d2d0c56adad689fbf3bcd4d2961.tar.xz
yuzu-8942047d419f6d2d0c56adad689fbf3bcd4d2961.tar.zst
yuzu-8942047d419f6d2d0c56adad689fbf3bcd4d2961.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/gpu_asynch.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/video_core/gpu_asynch.cpp b/src/video_core/gpu_asynch.cpp
index d4e2553a9..7060f9a89 100644
--- a/src/video_core/gpu_asynch.cpp
+++ b/src/video_core/gpu_asynch.cpp
@@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#include "core/core.h"
+#include "core/hardware_interrupt_manager.h"
#include "video_core/gpu_asynch.h"
#include "video_core/gpu_thread.h"
#include "video_core/renderer_base.h"
@@ -38,4 +40,9 @@ void GPUAsynch::FlushAndInvalidateRegion(CacheAddr addr, u64 size) {
gpu_thread.FlushAndInvalidateRegion(addr, size);
}
+void GPUAsynch::TriggerCpuInterrupt(const u32 event_id) const {
+ auto& interrupt_manager = system.InterruptManager();
+ interrupt_manager.InterruptGPU(event_id);
+}
+
} // namespace VideoCommon