Searched defs:dstImage (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPrinterSurfaceData.java69 BufferedImage dstImage = new BufferedImage(x + w, y + h, BufferedImage.TYPE_INT_ARGB_PRE);
70 return dstImage.getRaster();
73 public BufferedImage copyArea(SunGraphics2D sg2d, int x, int y, int w, int h, BufferedImage dstImage) { argument
75 if (dstImage == null) {
76 dstImage = getDeviceConfiguration().createCompatibleImage(w, h);
80 Graphics g = dstImage.createGraphics();
85 return dstImage;
/openjdk7/jdk/test/sun/java2d/SunGraphics2D/SourceClippingBlitTest/
H A DSourceClippingBlitTest.java247 static VolatileImage dstImage; field in class:SourceClippingBlitTest
257 if (dstImage == null) {
258 dstImage =
262 dstImage.validate(gc);
263 g = dstImage.getGraphics();
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXOffScreenSurfaceData.java526 public BufferedImage copyArea(SunGraphics2D sg2d, int x, int y, int w, int h, BufferedImage dstImage) { argument
528 if (dstImage == null) {
529 dstImage = getDeviceConfiguration().createCompatibleImage(w, h);
533 Graphics g = dstImage.createGraphics();
537 return dstImage;
/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c599 void* dstImage, int dstRowBytes,
602 UInt8* dstRow = (UInt8*)dstImage;
635 void* dstImage, int dstRowBytes, int width, int height) {
637 UInt8* dstRow = (UInt8*) dstImage;
659 void* dstImage, int dstRowBytes,
662 unsigned char *dstRow = (unsigned char *) dstImage;
674 void* dstImage, int dstRowBytes,
677 unsigned char *dstRow = (unsigned char *) dstImage, *dstByte;
598 CopyBW2Grey8(const void* srcImage, int srcRowBytes, void* dstImage, int dstRowBytes, int width, int height) argument
634 CopyGrey4ToGrey8(const void* srcImage, int srcRowBytes, void* dstImage, int dstRowBytes, int width, int height) argument
658 CopyFTSubpixelToSubpixel(const void* srcImage, int srcRowBytes, void* dstImage, int dstRowBytes, int width, int height) argument
673 CopyFTSubpixelVToSubpixel(const void* srcImage, int srcRowBytes, void* dstImage, int dstRowBytes, int width, int height) argument

Completed in 5504 milliseconds