GPU: Fixed bug in command list size decoding.
This commit is contained in:
parent
a1f9cde806
commit
170123982d
4 changed files with 5 additions and 5 deletions
|
@ -219,7 +219,7 @@ static void ExecuteCommand(const Command& command, u32 thread_id) {
|
|||
{
|
||||
auto& params = command.set_command_list_last;
|
||||
WriteGPURegister(GPU_REG_INDEX(command_processor_config.address), Memory::VirtualToPhysicalAddress(params.address) >> 3);
|
||||
WriteGPURegister(GPU_REG_INDEX(command_processor_config.size), params.size >> 3);
|
||||
WriteGPURegister(GPU_REG_INDEX(command_processor_config.size), params.size);
|
||||
|
||||
// TODO: Not sure if we are supposed to always write this .. seems to trigger processing though
|
||||
WriteGPURegister(GPU_REG_INDEX(command_processor_config.trigger), 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue