summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-09-22 15:11:28 +0200
committerGitHub <noreply@github.com>2019-09-22 15:11:28 +0200
commit822ca65d695d85d8f017bc2f8c8dd5b6806c2e7d (patch)
tree1c687d74d025733b90c1a3b5de066a4961eb3c4c /src/video_core/engines
parentMerge pull request #2867 from ReinUsesLisp/configure-framebuffers-clean (diff)
parentFix clang-format (diff)
downloadyuzu-822ca65d695d85d8f017bc2f8c8dd5b6806c2e7d.tar
yuzu-822ca65d695d85d8f017bc2f8c8dd5b6806c2e7d.tar.gz
yuzu-822ca65d695d85d8f017bc2f8c8dd5b6806c2e7d.tar.bz2
yuzu-822ca65d695d85d8f017bc2f8c8dd5b6806c2e7d.tar.lz
yuzu-822ca65d695d85d8f017bc2f8c8dd5b6806c2e7d.tar.xz
yuzu-822ca65d695d85d8f017bc2f8c8dd5b6806c2e7d.tar.zst
yuzu-822ca65d695d85d8f017bc2f8c8dd5b6806c2e7d.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/fermi_2d.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/engines/fermi_2d.cpp b/src/video_core/engines/fermi_2d.cpp
index 98a8b5337..7ff44f06d 100644
--- a/src/video_core/engines/fermi_2d.cpp
+++ b/src/video_core/engines/fermi_2d.cpp
@@ -29,8 +29,8 @@ void Fermi2D::CallMethod(const GPU::MethodCall& method_call) {
}
void Fermi2D::HandleSurfaceCopy() {
- LOG_WARNING(HW_GPU, "Requested a surface copy with operation {}",
- static_cast<u32>(regs.operation));
+ LOG_DEBUG(HW_GPU, "Requested a surface copy with operation {}",
+ static_cast<u32>(regs.operation));
// TODO(Subv): Only raw copies are implemented.
ASSERT(regs.operation == Operation::SrcCopy);