Home
last modified time | relevance | path

Searched refs:iconBounds (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
DCachingPipeline.java350 Rect iconBounds = request.getIconBounds(); in render() local
352 if (iconBounds.width() > source.getWidth() * 2) { in render()
355 if (iconBounds != null) { in render()
356 bitmap = mEnvironment.getBitmap(iconBounds.width(), in render()
357 iconBounds.height(), BitmapCache.ICON); in render()
361 float maxSize = Math.max(iconBounds.width(), iconBounds.height()); in render()
364 float dx = (iconBounds.width() - (source.getWidth() * scale))/2.0f; in render()
365 float dy = (iconBounds.height() - (source.getHeight() * scale))/2.0f; in render()