mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #2119 from FernandoS27/fix-copy
rasterizer_cache_gl: Only do fast layered copy on the same format.
This commit is contained in:
		
						commit
						c4243c07cc
					
				| @ -1257,7 +1257,11 @@ Surface RasterizerCacheOpenGL::RecreateSurface(const Surface& old_surface, | ||||
|     case SurfaceTarget::TextureCubemap: | ||||
|     case SurfaceTarget::Texture2DArray: | ||||
|     case SurfaceTarget::TextureCubeArray: | ||||
|         FastLayeredCopySurface(old_surface, new_surface); | ||||
|         if (old_params.pixel_format == new_params.pixel_format) | ||||
|             FastLayeredCopySurface(old_surface, new_surface); | ||||
|         else { | ||||
|             AccurateCopySurface(old_surface, new_surface); | ||||
|         } | ||||
|         break; | ||||
|     default: | ||||
|         LOG_CRITICAL(Render_OpenGL, "Unimplemented surface target={}", | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 bunnei
						bunnei