HomeSort by relevance Sort by last modified time
    Searched defs:yPixels (Results 1 - 2 of 2) sorted by null

  /development/samples/devbytes/graphics/ImagePixelization/src/com/example/android/imagepixelization/
ImagePixelization.java 167 int yPixels = (int) (pixelizationFactor * ((float)height));
168 yPixels = yPixels > 0 ? yPixels : 1;
174 int[] pixels = new int[yPixels * xPixels];
178 for (int y = 0; y < height; y+=yPixels) {
184 maxY = Math.min(y + yPixels, height);
201 int h = Math.min(yPixels, height - y);
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java     [all...]

Completed in 173 milliseconds