diff options
| author | 2019-06-12 07:52:49 -0400 | |
|---|---|---|
| committer | 2019-07-05 15:49:26 -0400 | |
| commit | 7d1b974bcaf72c32910dcf4ff2d435f91cf40609 (patch) | |
| tree | 64c69a14a9135b0027dea0d7e832e52710d7d8a8 /src/video_core/gpu_asynch.h | |
| parent | nvflinger: Make the force 30 fps still force 30 fps (diff) | |
| download | yuzu-7d1b974bcaf72c32910dcf4ff2d435f91cf40609.tar.gz yuzu-7d1b974bcaf72c32910dcf4ff2d435f91cf40609.tar.xz yuzu-7d1b974bcaf72c32910dcf4ff2d435f91cf40609.zip | |
GPU: Correct Interrupts to interrupt on syncpt/value instead of event, mirroring hardware
Diffstat (limited to 'src/video_core/gpu_asynch.h')
| -rw-r--r-- | src/video_core/gpu_asynch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu_asynch.h b/src/video_core/gpu_asynch.h index d49e9b96e..5f1b2fb7d 100644 --- a/src/video_core/gpu_asynch.h +++ b/src/video_core/gpu_asynch.h | |||
| @@ -28,7 +28,7 @@ public: | |||
| 28 | void FlushAndInvalidateRegion(CacheAddr addr, u64 size) override; | 28 | void FlushAndInvalidateRegion(CacheAddr addr, u64 size) override; |
| 29 | 29 | ||
| 30 | protected: | 30 | protected: |
| 31 | void TriggerCpuInterrupt(const u32 event_id) const override; | 31 | void TriggerCpuInterrupt(const u32 syncpoint_id, const u32 value) const override; |
| 32 | 32 | ||
| 33 | private: | 33 | private: |
| 34 | GPUThread::ThreadManager gpu_thread; | 34 | GPUThread::ThreadManager gpu_thread; |