mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Pica/Rasterizer: Fix a bug related to multitexturing and texture wrapping.
This commit is contained in:
		
							parent
							
								
									195d73a385
								
							
						
					
					
						commit
						d13bd327ba
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -229,8 +229,8 @@ void ProcessTriangle(const VertexShader::OutputVertex& v0, | |||
|                             return 0; | ||||
|                     } | ||||
|                 }; | ||||
|                 s = GetWrappedTexCoord(registers.texture0.wrap_s, s, registers.texture0.width); | ||||
|                 t = registers.texture0.height - 1 - GetWrappedTexCoord(registers.texture0.wrap_t, t, registers.texture0.height); | ||||
|                 s = GetWrappedTexCoord(texture.config.wrap_s, s, texture.config.width); | ||||
|                 t = texture.config.height - 1 - GetWrappedTexCoord(texture.config.wrap_t, t, texture.config.height); | ||||
| 
 | ||||
|                 u8* texture_data = Memory::GetPointer(PAddrToVAddr(texture.config.GetPhysicalAddress())); | ||||
|                 auto info = DebugUtils::TextureInfo::FromPicaRegister(texture.config, texture.format); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue