Browse Source
Merge pull request #2212 from ReinUsesLisp/dma-push-fix
dma_pusher: Store command_list_header by copy
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/video_core/dma_pusher.cpp
|
|
@ -39,7 +39,7 @@ bool DmaPusher::Step() { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
const CommandList& command_list{dma_pushbuffer.front()}; |
|
|
const CommandList& command_list{dma_pushbuffer.front()}; |
|
|
const CommandListHeader& command_list_header{command_list[dma_pushbuffer_subindex++]}; |
|
|
|
|
|
|
|
|
const CommandListHeader command_list_header{command_list[dma_pushbuffer_subindex++]}; |
|
|
GPUVAddr dma_get = command_list_header.addr; |
|
|
GPUVAddr dma_get = command_list_header.addr; |
|
|
GPUVAddr dma_put = dma_get + command_list_header.size * sizeof(u32); |
|
|
GPUVAddr dma_put = dma_get + command_list_header.size * sizeof(u32); |
|
|
bool non_main = command_list_header.is_non_main; |
|
|
bool non_main = command_list_header.is_non_main; |
|
|
|