Searched defs:dstPixels (Results 1 - 1 of 1) 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...]

Completed in 668 milliseconds