mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Merge pull request #983 from yuriks/null-memory-fill
GSP: Don't try to write memory fill registers if start address is 0
This commit is contained in:
		
						commit
						a989522384
					
				
					 1 changed files with 17 additions and 12 deletions
				
			
		|  | @ -395,19 +395,24 @@ static void ExecuteCommand(const Command& command, u32 thread_id) { | |||
|     case CommandId::SET_MEMORY_FILL: | ||||
|     { | ||||
|         auto& params = command.memory_fill; | ||||
| 
 | ||||
|         if (params.start1 != 0) { | ||||
|             WriteGPURegister(static_cast<u32>(GPU_REG_INDEX(memory_fill_config[0].address_start)), | ||||
|                     Memory::VirtualToPhysicalAddress(params.start1) >> 3); | ||||
|             WriteGPURegister(static_cast<u32>(GPU_REG_INDEX(memory_fill_config[0].address_end)), | ||||
|                     Memory::VirtualToPhysicalAddress(params.end1) >> 3); | ||||
|             WriteGPURegister(static_cast<u32>(GPU_REG_INDEX(memory_fill_config[0].value_32bit)), params.value1); | ||||
|             WriteGPURegister(static_cast<u32>(GPU_REG_INDEX(memory_fill_config[0].control)), params.control1); | ||||
|         } | ||||
| 
 | ||||
|         if (params.start2 != 0) { | ||||
|             WriteGPURegister(static_cast<u32>(GPU_REG_INDEX(memory_fill_config[1].address_start)), | ||||
|                     Memory::VirtualToPhysicalAddress(params.start2) >> 3); | ||||
|             WriteGPURegister(static_cast<u32>(GPU_REG_INDEX(memory_fill_config[1].address_end)), | ||||
|                     Memory::VirtualToPhysicalAddress(params.end2) >> 3); | ||||
|             WriteGPURegister(static_cast<u32>(GPU_REG_INDEX(memory_fill_config[1].value_32bit)), params.value2); | ||||
|             WriteGPURegister(static_cast<u32>(GPU_REG_INDEX(memory_fill_config[1].control)), params.control2); | ||||
|         } | ||||
|         break; | ||||
|     } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue