diff options
| author | 2021-06-04 00:52:40 +0200 | |
|---|---|---|
| committer | 2021-07-22 21:51:34 -0400 | |
| commit | c736b9ffabc8a869d8ed131d365aff21b049f751 (patch) | |
| tree | 79f29b036c859591e1173e234386e6ed5cf1b605 /src | |
| parent | vk_swapchain: Handle outdated swapchains (diff) | |
| download | yuzu-c736b9ffabc8a869d8ed131d365aff21b049f751.tar.gz yuzu-c736b9ffabc8a869d8ed131d365aff21b049f751.tar.xz yuzu-c736b9ffabc8a869d8ed131d365aff21b049f751.zip | |
DMA: Restrict optimised path for BlockToLinear further.
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/engines/maxwell_dma.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_dma.cpp b/src/video_core/engines/maxwell_dma.cpp index c51776466..c7ec1eac9 100644 --- a/src/video_core/engines/maxwell_dma.cpp +++ b/src/video_core/engines/maxwell_dma.cpp | |||
| @@ -127,7 +127,8 @@ void MaxwellDMA::CopyBlockLinearToPitch() { | |||
| 127 | 127 | ||
| 128 | // Optimized path for micro copies. | 128 | // Optimized path for micro copies. |
| 129 | const size_t dst_size = static_cast<size_t>(regs.pitch_out) * regs.line_count; | 129 | const size_t dst_size = static_cast<size_t>(regs.pitch_out) * regs.line_count; |
| 130 | if (dst_size < GOB_SIZE && regs.pitch_out <= GOB_SIZE_X) { | 130 | if (dst_size < GOB_SIZE && regs.pitch_out <= GOB_SIZE_X && |
| 131 | regs.src_params.height > GOB_SIZE_Y) { | ||
| 131 | FastCopyBlockLinearToPitch(); | 132 | FastCopyBlockLinearToPitch(); |
| 132 | return; | 133 | return; |
| 133 | } | 134 | } |