summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-04-06 05:50:54 +0200
committerGitHub <noreply@github.com>2019-04-06 05:50:54 +0200
commit864280fabcb4b9d97a5a171d0100694d9f2d4ec4 (patch)
tree5c956c3f0a99f94e471417e23c437ca4c30d5307 /src/video_core/engines/maxwell_3d.cpp
parentMerge pull request #2325 from lioncash/name (diff)
parentImplement SyncPoint Register in the GPU. (diff)
downloadyuzu-864280fabcb4b9d97a5a171d0100694d9f2d4ec4.tar
yuzu-864280fabcb4b9d97a5a171d0100694d9f2d4ec4.tar.gz
yuzu-864280fabcb4b9d97a5a171d0100694d9f2d4ec4.tar.bz2
yuzu-864280fabcb4b9d97a5a171d0100694d9f2d4ec4.tar.lz
yuzu-864280fabcb4b9d97a5a171d0100694d9f2d4ec4.tar.xz
yuzu-864280fabcb4b9d97a5a171d0100694d9f2d4ec4.tar.zst
yuzu-864280fabcb4b9d97a5a171d0100694d9f2d4ec4.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.cpp')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index 3c3ac8f81..8194a4b4a 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -249,6 +249,10 @@ void Maxwell3D::CallMethod(const GPU::MethodCall& method_call) {
ProcessQueryGet();
break;
}
+ case MAXWELL3D_REG_INDEX(sync_info): {
+ ProcessSyncPoint();
+ break;
+ }
default:
break;
}
@@ -326,6 +330,14 @@ void Maxwell3D::ProcessQueryGet() {
}
}
+void Maxwell3D::ProcessSyncPoint() {
+ const u32 sync_point = regs.sync_info.sync_point.Value();
+ const u32 increment = regs.sync_info.increment.Value();
+ const u32 cache_flush = regs.sync_info.unknown.Value();
+ UNIMPLEMENTED_MSG("Syncpoint Set {}, increment: {}, unk: {}", sync_point, increment,
+ cache_flush);
+}
+
void Maxwell3D::DrawArrays() {
LOG_DEBUG(HW_GPU, "called, topology={}, count={}", static_cast<u32>(regs.draw.topology.Value()),
regs.vertex_buffer.count);