-
Bug
-
Resolution: Fixed
-
P3
-
internal
MTLBlitLoops_CopyArea() method uses an intermediate buffer to copy from src to dst.
This intermediate buffer gets created on every scroll event. This buffer is in @autorelease block, but does not get released. This causes memory leak.
Solution :
We need to mark it as autorelease after allocation.
This intermediate buffer gets created on every scroll event. This buffer is in @autorelease block, but does not get released. This causes memory leak.
Solution :
We need to mark it as autorelease after allocation.
- relates to
-
JDK-8245037 Lanai - MTLBlitLoops_CopyArea() needs to be optimized
- Closed