mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	rasterizer_cache: Bring back custom format parameter (#6873)
This commit is contained in:
		
							parent
							
								
									6d0cd5b00e
								
							
						
					
					
						commit
						a478bedb12
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		|  | @ -228,10 +228,10 @@ std::string SurfaceParams::DebugName(bool scaled, bool custom) const noexcept { | |||
| } | ||||
| 
 | ||||
| bool SurfaceParams::operator==(const SurfaceParams& other) const noexcept { | ||||
|     return std::tie(addr, end, width, height, stride, levels, is_tiled, texture_type, | ||||
|                     pixel_format) == std::tie(other.addr, other.end, other.width, other.height, | ||||
|                                               other.stride, other.levels, other.is_tiled, | ||||
|                                               other.texture_type, other.pixel_format); | ||||
|     return std::tie(addr, end, width, height, stride, levels, is_tiled, texture_type, pixel_format, | ||||
|                     custom_format) == | ||||
|            std::tie(other.addr, other.end, other.width, other.height, other.stride, other.levels, | ||||
|                     other.is_tiled, other.texture_type, other.pixel_format, other.custom_format); | ||||
| } | ||||
| 
 | ||||
| } // namespace VideoCore
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue