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

/frameworks/base/graphics/java/android/graphics/
H A DAtlas.java174 * The algorithm starts with a single empty cell covering the entire
205 * After placing a bitmap in an empty cell, the algorithm splits
234 * fit. It will then split the now occupied cell and proceed onto
246 * A cell represents a sub-rectangle of the atlas. A cell is
261 return String.format("cell[x=%d y=%d width=%d height=%d", x, y, width, height);
281 Cell cell = mRoot.next;
284 while (cell != null) {
285 if (insert(cell, prev, width, height, entry)) {
289 prev = cell;
364 insert(Cell cell, Cell prev, int width, int height, Entry entry) argument
[all...]

Completed in 46 milliseconds