Package com.bumptech.glide.load.engine.bitmap_recycle

Interface Summary
BitmapPool An interface for a pool that allows users to reuse Bitmap objects.
 

Class Summary
BitmapPoolAdapter An BitmapPool implementation that rejects all Bitmaps added to it and always returns null from get.
LruBitmapPool An BitmapPool implementation that uses an LruPoolStrategy to bucket Bitmaps and then uses an LRU eviction policy to evict Bitmaps from the least recently used bucket in order to keep the pool below a given maximum size limit.
SizeConfigStrategy Keys Bitmaps using both Bitmap.getAllocationByteCount() and the Bitmap.Config returned from Bitmap.getConfig().