Searched refs:dstPixels (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DEffectUtils.java76 int[] dstPixels = new int[width * height];
79 blur(srcPixels, dstPixels, width, height, kernel, radius);
82 blur(dstPixels, srcPixels, height, width, kernel, radius);
87 byte[] dstPixels = new byte[width * height];
90 blur(srcPixels, dstPixels, width, height, kernel, radius);
93 blur(dstPixels, srcPixels, height, width, kernel, radius);
106 * format.</p> <p>After this method is executed, dstPixels contains a transposed and filtered copy of
110 * @param dstPixels the destination pixels
116 private static void blur(int[] srcPixels, int[] dstPixels, argument
156 dstPixels[inde
178 blur(byte[] srcPixels, byte[] dstPixels, int width, int height, float[] kernel, int radius) argument
[all...]
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCImage.m36 (jint *srcPixels, jint *dstPixels, int width, int height)
47 dstPixels[x] = (b << 24) | (g << 16) | (r << 8) | a;
50 dstPixels += width;
55 (NSImage *srcImage, jint *dstPixels, int width, int height)
58 CGContextRef cgRef = CGBitmapContextCreate(dstPixels, width, height, 8, width * 4, colorspace, kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host);
H A DImageSurfaceData.m1264 register Pixel32bit* dstPixels = (Pixel32bit*)dstIsdo->pixels;
1270 dstPixels += offset;
1300 *dstPixels = (*dstPixels ^ (srcPixel ^ colorXOR));
1302 dstPixels++; srcPixels++;
1305 dstPixels += skip;

Completed in 34 milliseconds