diff options
| author | 2019-04-07 17:56:11 -0400 | |
|---|---|---|
| committer | 2019-04-07 17:56:11 -0400 | |
| commit | c2fee0e5195bcde6c7c603788145496f520f1316 (patch) | |
| tree | f882a2d82634cfc7e626665e6d0931cb0ba6e361 | |
| parent | Merge pull request #2359 from FearlessTobi/port-2-prs (diff) | |
| parent | maxwell_3d: Reduce severity of ProcessSyncPoint (diff) | |
| download | yuzu-c2fee0e5195bcde6c7c603788145496f520f1316.tar.gz yuzu-c2fee0e5195bcde6c7c603788145496f520f1316.tar.xz yuzu-c2fee0e5195bcde6c7c603788145496f520f1316.zip | |
Merge pull request #2355 from ReinUsesLisp/sync-point
maxwell_3d: Reduce severity of ProcessSyncPoint
Diffstat (limited to '')
| -rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index 8194a4b4a..74403eed4 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp | |||
| @@ -334,8 +334,8 @@ void Maxwell3D::ProcessSyncPoint() { | |||
| 334 | const u32 sync_point = regs.sync_info.sync_point.Value(); | 334 | const u32 sync_point = regs.sync_info.sync_point.Value(); |
| 335 | const u32 increment = regs.sync_info.increment.Value(); | 335 | const u32 increment = regs.sync_info.increment.Value(); |
| 336 | const u32 cache_flush = regs.sync_info.unknown.Value(); | 336 | const u32 cache_flush = regs.sync_info.unknown.Value(); |
| 337 | UNIMPLEMENTED_MSG("Syncpoint Set {}, increment: {}, unk: {}", sync_point, increment, | 337 | LOG_DEBUG(HW_GPU, "Syncpoint set {}, increment: {}, unk: {}", sync_point, increment, |
| 338 | cache_flush); | 338 | cache_flush); |
| 339 | } | 339 | } |
| 340 | 340 | ||
| 341 | void Maxwell3D::DrawArrays() { | 341 | void Maxwell3D::DrawArrays() { |