summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Liam2022-09-03 21:02:02 -0400
committerGravatar Fernando Sahmkow2022-10-06 21:00:54 +0200
commitaedd739631efcebf42a1dae601096c10b99d9cd5 (patch)
tree5c2fdfeba38020adbd00b97208f7dbbe260e015f
parentGeneral: address feedback (diff)
downloadyuzu-aedd739631efcebf42a1dae601096c10b99d9cd5.tar.gz
yuzu-aedd739631efcebf42a1dae601096c10b99d9cd5.tar.xz
yuzu-aedd739631efcebf42a1dae601096c10b99d9cd5.zip
maxwell_dma: remove warnings from implemented functionality
-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 bcffd1862..3909d36c1 100644
--- a/src/video_core/engines/maxwell_dma.cpp
+++ b/src/video_core/engines/maxwell_dma.cpp
@@ -133,7 +133,6 @@ void MaxwellDMA::CopyBlockLinearToPitch() {
133 } 133 }
134 134
135 // Deswizzle the input and copy it over. 135 // Deswizzle the input and copy it over.
136 UNIMPLEMENTED_IF(regs.launch_dma.remap_enable != 0);
137 const Parameters& src_params = regs.src_params; 136 const Parameters& src_params = regs.src_params;
138 137
139 const u32 num_remap_components = regs.remap_const.num_dst_components_minus_one + 1; 138 const u32 num_remap_components = regs.remap_const.num_dst_components_minus_one + 1;
@@ -182,7 +181,6 @@ void MaxwellDMA::CopyBlockLinearToPitch() {
182void MaxwellDMA::CopyPitchToBlockLinear() { 181void MaxwellDMA::CopyPitchToBlockLinear() {
183 UNIMPLEMENTED_IF_MSG(regs.dst_params.block_size.width != 0, "Block width is not one"); 182 UNIMPLEMENTED_IF_MSG(regs.dst_params.block_size.width != 0, "Block width is not one");
184 UNIMPLEMENTED_IF(regs.dst_params.layer != 0); 183 UNIMPLEMENTED_IF(regs.dst_params.layer != 0);
185 UNIMPLEMENTED_IF(regs.launch_dma.remap_enable != 0);
186 184
187 const bool is_remapping = regs.launch_dma.remap_enable != 0; 185 const bool is_remapping = regs.launch_dma.remap_enable != 0;
188 const u32 num_remap_components = regs.remap_const.num_dst_components_minus_one + 1; 186 const u32 num_remap_components = regs.remap_const.num_dst_components_minus_one + 1;