mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	video_core: change "left + width" to "right" in CanSubRect
the constructed rectangle from GetSubRect already has the right info
This commit is contained in:
		
							parent
							
								
									186ffc235f
								
							
						
					
					
						commit
						aaf496dec7
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -584,7 +584,7 @@ bool SurfaceParams::CanSubRect(const SurfaceParams& sub_surface) const { | |||
|            sub_surface.is_tiled == is_tiled && | ||||
|            (sub_surface.addr - addr) % BytesInPixels(is_tiled ? 64 : 1) == 0 && | ||||
|            (sub_surface.stride == stride || sub_surface.height <= (is_tiled ? 8u : 1u)) && | ||||
|            GetSubRect(sub_surface).left + sub_surface.width <= stride; | ||||
|            GetSubRect(sub_surface).right <= stride; | ||||
| } | ||||
| 
 | ||||
| bool SurfaceParams::CanExpand(const SurfaceParams& expanded_surface) const { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue