Searched refs:srcPixels (Results 1 - 5 of 5) sorted by relevance

/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/nimbus/
H A DEffectUtils.java75 int[] srcPixels = new int[width * height];
77 getPixels(src, 0, 0, width, height, srcPixels);
79 blur(srcPixels, dstPixels, width, height, kernel, radius);
82 blur(dstPixels, srcPixels, height, width, kernel, radius);
83 // the result is now stored in srcPixels due to the 2nd pass
84 setPixels(dst, 0, 0, width, height, srcPixels);
86 byte[] srcPixels = new byte[width * height];
88 getPixels(src, 0, 0, width, height, srcPixels);
90 blur(srcPixels, dstPixels, width, height, kernel, radius);
93 blur(dstPixels, srcPixels, heigh
116 blur(int[] srcPixels, int[] dstPixels, int width, int height, float[] kernel, int radius) argument
178 blur(byte[] srcPixels, byte[] dstPixels, int width, int height, float[] kernel, int radius) argument
[all...]
/openjdk10/jdk/src/java.desktop/macosx/classes/sun/java2d/
H A DCompositeCRenderer.java166 BufferedImage srcPixels;
169 srcPixels = surfaceData.getCompositingSrcImage((int) (compositingBounds.getWidth()),
172 Graphics2D g = srcPixels.createGraphics();
191 composite(sg2d, surfaceData, srcPixels, compositingBounds);
220 BufferedImage srcPixels;
223 srcPixels = surfaceData.getCompositingSrcImage((int) compositingBounds.getWidth(), (int) compositingBounds.getHeight());
225 Graphics2D g = srcPixels.createGraphics();
241 composite(sg2d, surfaceData, srcPixels, compositingBounds);
275 BufferedImage srcPixels;
278 srcPixels
356 composite(SunGraphics2D sg2d, OSXSurfaceData surfaceData, BufferedImage srcPixels, Rectangle2D compositingBounds) argument
[all...]
H A DOSXOffScreenSurfaceData.java541 public boolean xorSurfacePixels(SunGraphics2D sg2d, BufferedImage srcPixels, int x, int y, int w, int h, int colorXOR) { argument
545 if ((type == BufferedImage.TYPE_INT_ARGB_PRE) || (type == BufferedImage.TYPE_INT_ARGB) || (type == BufferedImage.TYPE_INT_RGB)) { return xorSurfacePixels(createData(srcPixels), colorXOR, x, y, w, h); }
H A DOSXSurfaceData.java140 public abstract boolean xorSurfacePixels(SunGraphics2D sg2d, BufferedImage srcPixels, int x, int y, int w, int h, int colorXOR); argument
/openjdk10/jdk/src/java.desktop/macosx/classes/sun/lwawt/macosx/
H A DCPrinterSurfaceData.java88 public boolean xorSurfacePixels(SunGraphics2D sg2d, BufferedImage srcPixels, int x, int y, int w, int h, int colorXOR) { argument

Completed in 160 milliseconds