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

  /development/samples/devbytes/graphics/ImagePixelization/src/com/example/android/imagepixelization/
ImagePixelization.java 165 int xPixels = (int) (pixelizationFactor * ((float)width));
166 xPixels = xPixels > 0 ? xPixels : 1;
174 int[] pixels = new int[yPixels * xPixels];
179 for (int x = 0; x < width; x+=xPixels) {
183 maxX = Math.min(x + xPixels, width);
200 int w = Math.min(xPixels, width - x);
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ImageWallpaper.java 279 int xPixels, int yPixels) {
283 + ", xPixels=" + xPixels + ", yPixels=" + yPixels);
397 int xPixels = availw / 2;
401 // mXOffset and mYOffset are set to 0.5f by default and therefore xPixels and yPixels
405 if (availwUnscaled < 0) xPixels += (int)(availwUnscaled * (mXOffset - .5f) + .5f);
414 if (!redrawNeeded && xPixels == mLastXTranslation && yPixels == mLastYTranslation) {
421 mLastXTranslation = xPixels;
429 if (!drawWallpaperWithOpenGL(sh, availw, availh, xPixels, yPixels)) {
430 drawWallpaperWithCanvas(sh, availw, availh, xPixels, yPixels)
    [all...]

Completed in 115 milliseconds