summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-06-12 13:52:49 +0200
committerFernandoS27 <fsahmkow27@gmail.com>2019-07-05 21:49:26 +0200
commit7d1b974bcaf72c32910dcf4ff2d435f91cf40609 (patch)
tree64c69a14a9135b0027dea0d7e832e52710d7d8a8 /src/video_core/gpu.cpp
parentnvflinger: Make the force 30 fps still force 30 fps (diff)
downloadyuzu-7d1b974bcaf72c32910dcf4ff2d435f91cf40609.tar
yuzu-7d1b974bcaf72c32910dcf4ff2d435f91cf40609.tar.gz
yuzu-7d1b974bcaf72c32910dcf4ff2d435f91cf40609.tar.bz2
yuzu-7d1b974bcaf72c32910dcf4ff2d435f91cf40609.tar.lz
yuzu-7d1b974bcaf72c32910dcf4ff2d435f91cf40609.tar.xz
yuzu-7d1b974bcaf72c32910dcf4ff2d435f91cf40609.tar.zst
yuzu-7d1b974bcaf72c32910dcf4ff2d435f91cf40609.zip
Diffstat (limited to 'src/video_core/gpu.cpp')
-rw-r--r--src/video_core/gpu.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp
index 086db0e69..efea23bf2 100644
--- a/src/video_core/gpu.cpp
+++ b/src/video_core/gpu.cpp
@@ -70,13 +70,13 @@ const DmaPusher& GPU::DmaPusher() const {
void GPU::IncrementSyncPoint(const u32 syncpoint_id) {
syncpoints[syncpoint_id]++;
sync_mutex.lock();
- if (!events[syncpoint_id].empty()) {
+ if (!syncpt_interrupts[syncpoint_id].empty()) {
u32 value = syncpoints[syncpoint_id].load();
- auto it = events[syncpoint_id].begin();
- while (it != events[syncpoint_id].end()) {
- if (value >= it->value) {
- TriggerCpuInterrupt(it->event_id);
- it = events[syncpoint_id].erase(it);
+ auto it = syncpt_interrupts[syncpoint_id].begin();
+ while (it != syncpt_interrupts[syncpoint_id].end()) {
+ if (value >= *it) {
+ TriggerCpuInterrupt(syncpoint_id, *it);
+ it = syncpt_interrupts[syncpoint_id].erase(it);
continue;
}
it++;
@@ -89,19 +89,19 @@ u32 GPU::GetSyncpointValue(const u32 syncpoint_id) const {
return syncpoints[syncpoint_id].load();
}
-void GPU::RegisterEvent(const u32 event_id, const u32 syncpoint_id, const u32 value) {
- for (auto& ev : events[syncpoint_id]) {
- if (ev.event_id == event_id && ev.value == value)
+void GPU::RegisterSyncptInterrupt(const u32 syncpoint_id, const u32 value) {
+ for (u32 in_value : syncpt_interrupts[syncpoint_id]) {
+ if (in_value == value)
return;
}
- events[syncpoint_id].emplace_back(event_id, value);
+ syncpt_interrupts[syncpoint_id].emplace_back(value);
}
-void GPU::CancelEvent(const u32 event_id, const u32 syncpoint_id, const u32 value) {
- auto it = events[syncpoint_id].begin();
- while (it != events[syncpoint_id].end()) {
- if (value == it->value) {
- it = events[syncpoint_id].erase(it);
+void GPU::CancelSyncptInterrupt(const u32 syncpoint_id, const u32 value) {
+ auto it = syncpt_interrupts[syncpoint_id].begin();
+ while (it != syncpt_interrupts[syncpoint_id].end()) {
+ if (value == *it) {
+ it = syncpt_interrupts[syncpoint_id].erase(it);
return;
}
it++;