diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/engines/maxwell_dma.cpp | 2 |
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() { | |||
| 182 | void MaxwellDMA::CopyPitchToBlockLinear() { | 181 | void 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; |