Searched refs:copyImage (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DDrawImagePipe.java41 * - copyImage: These methods simply copy the pixels
48 * copyImage methods except they substitute the given
57 public boolean copyImage(SunGraphics2D sg, Image img, method in interface:DrawImagePipe
62 public boolean copyImage(SunGraphics2D sg, Image img, method in interface:DrawImagePipe
H A DValidatePipe.java181 public boolean copyImage(SunGraphics2D sg, Image img, method in class:ValidatePipe
186 return sg.imagepipe.copyImage(sg, img, x, y, bgColor, observer);
191 public boolean copyImage(SunGraphics2D sg, Image img, method in class:ValidatePipe
196 return sg.imagepipe.copyImage(sg, img, dx, dy, sx, sy, w, h,
H A DNullPipe.java122 public boolean copyImage(SunGraphics2D sg, Image img, method in class:NullPipe
128 public boolean copyImage(SunGraphics2D sg, Image img, method in class:NullPipe
H A DDrawImage.java60 public boolean copyImage(SunGraphics2D sg, Image img, method in class:DrawImage
81 public boolean copyImage(SunGraphics2D sg, Image img, method in class:DrawImage
332 g2d.copyImage(img, 0, 0, sx1, sy1, width, height, null, null);
1005 public boolean copyImage(SunGraphics2D sg, Image img, method in class:DrawImage
1010 return copyImage(sg, img, x, y, bgColor);
1021 public boolean copyImage(SunGraphics2D sg, Image img, method in class:DrawImage
1026 return copyImage(sg, img, dx, dy, sx, sy, w, h, bgColor);
1107 copyImage(sg, img, x, y, null);
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DDrawImage.java99 copyImage(sg, img, x, y, null);
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLDrawImage.java111 copyImage(sg, img, x, y, null);
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DCRenderer.java466 protected boolean copyImage(SunGraphics2D sg2d, Image img, int dx, int dy, Color bgColor) { method in class:CRenderer
478 protected boolean copyImage(SunGraphics2D sg2d, Image img, int dx, int dy, int sx, int sy, int width, int height, Color bgColor) { method in class:CRenderer
530 public boolean copyImage(SunGraphics2D sg2d, Image img, int x, int y, Color bgColor, ImageObserver observer) { method in class:CRenderer
533 if (!(img instanceof sun.awt.image.ToolkitImage)) { return copyImage(sg2d, img, x, y, bgColor); }
542 public boolean copyImage(SunGraphics2D sg2d, Image img, int dx, int dy, int sx, int sy, int width, int height, Color bgColor, ImageObserver observer) { method in class:CRenderer
545 if (!(img instanceof sun.awt.image.ToolkitImage)) { return copyImage(sg2d, img, dx, dy, sx, sy, width, height, bgColor); }
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java2635 // Note that drawTranslatedRenderedImage calls copyImage
2797 // copyImage to draw just the region of interest
2799 copyImage(bufImg, tileRect.x + i2uTransX,
3070 public boolean copyImage(Image img, int dx, int dy, int sx, int sy, method in class:SunGraphics2D
3074 return imagepipe.copyImage(this, img, dx, dy, sx, sy,
3079 return imagepipe.copyImage(this, img, dx, dy, sx, sy,
3115 return copyImage(img, x, y, 0, 0, width, height, bg, observer);
3163 return imagepipe.copyImage(this, img, x, y, bg, observer);
3167 return imagepipe.copyImage(this, img, x, y, bg, observer);
3238 return copyImage(im
[all...]

Completed in 38 milliseconds