Searched defs:bitmaps (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/java/com/android/server/
H A DAssetAtlasService.java57 * This service is responsible for packing preloaded bitmaps into a single
115 // Describes how bitmaps are placed in the atlas. Each bitmap is
135 ArrayList<Bitmap> bitmaps = new ArrayList<Bitmap>(300);
138 // We only care about drawables that hold bitmaps
146 bitmaps.add(bitmap);
151 // Our algorithms perform better when the bitmaps are first sorted
153 Collections.sort(bitmaps, new Comparator<Bitmap>() {
164 new Thread(new Renderer(bitmaps, totalPixelCount)).start();
204 Renderer(ArrayList<Bitmap> bitmaps, int pixelCount) { argument
205 mBitmaps = bitmaps;
392 computeBestConfiguration( ArrayList<Bitmap> bitmaps, int pixelCount) argument
468 chooseConfiguration(ArrayList<Bitmap> bitmaps, int pixelCount, String versionName) argument
673 ComputeWorker(int start, int end, int step, List<Bitmap> bitmaps, int pixelCount, List<WorkerResult> results, CountDownLatch signal) argument
[all...]

Completed in 82 milliseconds