Add Swizzle Parameters to the DMA engine

This commit is contained in:
Fernando Sahmkow
2019-04-23 11:21:00 -04:00
parent e140e2ebc6
commit f1e5314f1a
2 changed files with 27 additions and 2 deletions

View File

@ -25,7 +25,7 @@ void State::ProcessData(const u32 data, const bool is_last_call) {
write_offset += sub_copy_size;
if (is_last_call) {
const GPUVAddr address{regs.dest.Address()};
if (linear) {
if (is_linear) {
memory_manager.WriteBlock(address, inner_buffer.data(), copy_size);
} else {
UNIMPLEMENTED_IF(regs.dest.z != 0);