Browse Source
Merge pull request #2355 from ReinUsesLisp/sync-point
maxwell_3d: Reduce severity of ProcessSyncPoint
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/video_core/engines/maxwell_3d.cpp
|
|
@ -334,8 +334,8 @@ void Maxwell3D::ProcessSyncPoint() { |
|
|
const u32 sync_point = regs.sync_info.sync_point.Value(); |
|
|
const u32 sync_point = regs.sync_info.sync_point.Value(); |
|
|
const u32 increment = regs.sync_info.increment.Value(); |
|
|
const u32 increment = regs.sync_info.increment.Value(); |
|
|
const u32 cache_flush = regs.sync_info.unknown.Value(); |
|
|
const u32 cache_flush = regs.sync_info.unknown.Value(); |
|
|
UNIMPLEMENTED_MSG("Syncpoint Set {}, increment: {}, unk: {}", sync_point, increment, |
|
|
|
|
|
cache_flush); |
|
|
|
|
|
|
|
|
LOG_DEBUG(HW_GPU, "Syncpoint set {}, increment: {}, unk: {}", sync_point, increment, |
|
|
|
|
|
cache_flush); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void Maxwell3D::DrawArrays() { |
|
|
void Maxwell3D::DrawArrays() { |
|
|
|