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

/openjdk7/jdk/src/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) { method in class:CPrinterSurfaceData
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXOffScreenSurfaceData.java540 public boolean xorSurfacePixels(SunGraphics2D sg2d, BufferedImage srcPixels, int x, int y, int w, int h, int colorXOR) { method in class:OSXOffScreenSurfaceData
544 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); }
549 native boolean xorSurfacePixels(SurfaceData src, int colorXOR, int x, int y, int w, int h); method in class:OSXOffScreenSurfaceData
H A DCompositeCRenderer.java372 succeded = surfaceData.xorSurfacePixels(sg2d, srcPixels, x, y, w, h, ((XORComposite) composite).getXorColor().getRGB());
388 succeded = osxsd.xorSurfacePixels(sg2d, srcPixels, 0, 0, w, h, ((XORComposite) composite).getXorColor().getRGB());
H A DOSXSurfaceData.java133 public abstract boolean xorSurfacePixels(SunGraphics2D sg2d, BufferedImage srcPixels, int x, int y, int w, int h, int colorXOR); method in class:OSXSurfaceData
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DImageSurfaceData.m1240 IMAGE_SURFACE_INLINE jboolean xorSurfacePixels(JNIEnv *env, jobject dstIsd, jobject srcIsd, jint colorXOR, jint x, jint y, jint w, jint h)
1242 PRINT("xorSurfacePixels")
1253 fprintf(stderr, "xorSurfacePixels INVALID parameters: x=%d, y=%d, w=%d, h=%d\n", x, y, w, h);
1990 return xorSurfacePixels(env, dstIsd, srcIsd, colorXOR, x, y, w, h);

Completed in 55 milliseconds