diff options
| author | 2019-09-22 09:11:28 -0400 | |
|---|---|---|
| committer | 2019-09-22 09:11:28 -0400 | |
| commit | 822ca65d695d85d8f017bc2f8c8dd5b6806c2e7d (patch) | |
| tree | 1c687d74d025733b90c1a3b5de066a4961eb3c4c /src/video_core/engines | |
| parent | Merge pull request #2867 from ReinUsesLisp/configure-framebuffers-clean (diff) | |
| parent | Fix clang-format (diff) | |
| download | yuzu-822ca65d695d85d8f017bc2f8c8dd5b6806c2e7d.tar.gz yuzu-822ca65d695d85d8f017bc2f8c8dd5b6806c2e7d.tar.xz yuzu-822ca65d695d85d8f017bc2f8c8dd5b6806c2e7d.zip | |
Merge pull request #2891 from FearlessTobi/rod-tex
video_core: Implement RGBX16F and lower Surface Copy log severity
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/fermi_2d.cpp | 4 |
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) { | |||
| 29 | } | 29 | } |
| 30 | 30 | ||
| 31 | void Fermi2D::HandleSurfaceCopy() { | 31 | void Fermi2D::HandleSurfaceCopy() { |
| 32 | LOG_WARNING(HW_GPU, "Requested a surface copy with operation {}", | 32 | LOG_DEBUG(HW_GPU, "Requested a surface copy with operation {}", |
| 33 | static_cast<u32>(regs.operation)); | 33 | static_cast<u32>(regs.operation)); |
| 34 | 34 | ||
| 35 | // TODO(Subv): Only raw copies are implemented. | 35 | // TODO(Subv): Only raw copies are implemented. |
| 36 | ASSERT(regs.operation == Operation::SrcCopy); | 36 | ASSERT(regs.operation == Operation::SrcCopy); |