mirror of
				https://git.suyu.dev/suyu/suyu.git
				synced 2025-11-04 20:44:02 +08:00 
			
		
		
		
	Merge pull request #513 from Subv/cache_alignment
GLCache: Corrected a mismatch between storing compressed sizes and verifying the uncompressed alignment in GetSurface.
This commit is contained in:
		
						commit
						9936d1b9e2
					
				@ -933,7 +933,8 @@ Surface RasterizerCacheOpenGL::GetSurface(const SurfaceParams& params, ScaleMatc
 | 
			
		||||
    // Use GetSurfaceSubRect instead
 | 
			
		||||
    ASSERT(params.width == params.stride);
 | 
			
		||||
 | 
			
		||||
    ASSERT(!params.is_tiled || (params.width % 8 == 0 && params.height % 8 == 0));
 | 
			
		||||
    ASSERT(!params.is_tiled ||
 | 
			
		||||
           (params.GetActualWidth() % 8 == 0 && params.GetActualHeight() % 8 == 0));
 | 
			
		||||
 | 
			
		||||
    // Check for an exact match in existing surfaces
 | 
			
		||||
    Surface surface =
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user