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

  /external/skia/gm/
imagefromyuvtextures.cpp 59 unsigned char* yPixels;
61 yPixels = static_cast<unsigned char*>(fYUVBmps[0].getPixels());
68 yPixels[i] = static_cast<unsigned char>(0.299f * SkGetPackedR32(rgbColors[i]) +
  /external/skqp/gm/
imagefromyuvtextures.cpp 59 unsigned char* yPixels;
61 yPixels = static_cast<unsigned char*>(fYUVBmps[0].getPixels());
68 yPixels[i] = static_cast<unsigned char>(0.299f * SkGetPackedR32(rgbColors[i]) +
  /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/packages/SystemUI/src/com/android/systemui/
ImageWallpaper.java 192 int xPixels, int yPixels) {
196 + ", xPixels=" + xPixels + ", yPixels=" + yPixels);
319 int yPixels = (int) (availh * mYOffset);
326 if (!redrawNeeded && xPixels == mLastXTranslation && yPixels == mLastYTranslation) {
334 mLastYTranslation = yPixels;
340 drawWallpaperWithCanvas(sh, availw, availh, xPixels, yPixels);
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java     [all...]

Completed in 207 milliseconds