OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
278
int
xPixels
, int yPixels) {
282
+ ",
xPixels
=" +
xPixels
+ ", yPixels=" + yPixels);
396
int
xPixels
= availw / 2;
400
// mXOffset and mYOffset are set to 0.5f by default and therefore
xPixels
and yPixels
404
if (availwUnscaled < 0)
xPixels
+= (int)(availwUnscaled * (mXOffset - .5f) + .5f);
413
if (!redrawNeeded &&
xPixels
== mLastXTranslation && yPixels == mLastYTranslation) {
420
mLastXTranslation =
xPixels
;
428
if (!drawWallpaperWithOpenGL(sh, availw, availh,
xPixels
, yPixels)) {
429
drawWallpaperWithCanvas(sh, availw, availh,
xPixels
, yPixels)
[
all
...]
Completed in 1079 milliseconds