summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorLC <mathew1800@gmail.com>2020-10-09 03:10:31 +0200
committerGitHub <noreply@github.com>2020-10-09 03:10:31 +0200
commit61b246a3a952e704549f3d3a191fcb7442420fb1 (patch)
tree22d6d7e5af345c81d404229370efe4c36c835135 /src/video_core/engines
parentMerge pull request #4677 from german77/ShakeFromButton (diff)
parentvideo_core: Enforce -Wunused-variable and -Wunused-but-set-variable (diff)
downloadyuzu-61b246a3a952e704549f3d3a191fcb7442420fb1.tar
yuzu-61b246a3a952e704549f3d3a191fcb7442420fb1.tar.gz
yuzu-61b246a3a952e704549f3d3a191fcb7442420fb1.tar.bz2
yuzu-61b246a3a952e704549f3d3a191fcb7442420fb1.tar.lz
yuzu-61b246a3a952e704549f3d3a191fcb7442420fb1.tar.xz
yuzu-61b246a3a952e704549f3d3a191fcb7442420fb1.tar.zst
yuzu-61b246a3a952e704549f3d3a191fcb7442420fb1.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_dma.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_dma.cpp b/src/video_core/engines/maxwell_dma.cpp
index e88290754..8fa359d0a 100644
--- a/src/video_core/engines/maxwell_dma.cpp
+++ b/src/video_core/engines/maxwell_dma.cpp
@@ -114,8 +114,6 @@ void MaxwellDMA::CopyBlockLinearToPitch() {
const u32 block_depth = src_params.block_size.depth;
const size_t src_size =
CalculateSize(true, bytes_per_pixel, width, height, depth, block_height, block_depth);
- const size_t src_layer_size =
- CalculateSize(true, bytes_per_pixel, width, height, 1, block_height, block_depth);
if (read_buffer.size() < src_size) {
read_buffer.resize(src_size);