Searched defs:scaleImage (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DDrawImagePipe.java44 * - scaleImage: These methods copy from src to dest while
51 * scaleImage methods except they substitute the given
67 public boolean scaleImage(SunGraphics2D sg, Image img, int x, int y, method in interface:DrawImagePipe
72 public boolean scaleImage(SunGraphics2D sg, Image img, method in interface:DrawImagePipe
H A DDrawImage.java90 scaleImage(sg, img, dx, dy, (dx + w), (dy + h),
95 public boolean scaleImage(SunGraphics2D sg, Image img, int x, int y, method in class:DrawImage
667 public boolean scaleImage(SunGraphics2D sg, Image img, method in class:DrawImage
1040 public boolean scaleImage(SunGraphics2D sg, Image img, method in class:DrawImage
1046 return scaleImage(sg, img, x, y, width, height, bgColor);
1058 public boolean scaleImage(SunGraphics2D sg, Image img, method in class:DrawImage
1064 return scaleImage(sg, img, dx1, dy1, dx2, dy2,
H A DNullPipe.java134 public boolean scaleImage(SunGraphics2D sg, Image img, int x, int y, method in class:NullPipe
140 public boolean scaleImage(SunGraphics2D sg, Image img, method in class:NullPipe
H A DValidatePipe.java202 public boolean scaleImage(SunGraphics2D sg, Image img, int x, int y, method in class:ValidatePipe
207 return sg.imagepipe.scaleImage(sg, img, x, y, w, h, bgColor,
213 public boolean scaleImage(SunGraphics2D sg, Image img, method in class:ValidatePipe
219 return sg.imagepipe.scaleImage(sg, img, dx1, dy1, dx2, dy2,
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DCRenderer.java393 public boolean scaleImage(SunGraphics2D sg2d, Image img, int x, int y, int width, int height, Color bgColor) { method in class:CRenderer
401 return scaleImage(sg2d, img, x, y, x + width, y + height, sx, sy, sx + iw, sy + ih, bgColor);
405 public boolean scaleImage(SunGraphics2D sg2d, Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgColor) { method in class:CRenderer
407 // System.err.println("scaleImage");
508 scaleImage(sg2d, img, x, y, x + iw, y + ih, 0, 0, iw, ih, bgColor);
511 scaleImage(sg2d, img, x, y, x + iw, y + ih, 0, 0, iw, ih, bgColor);
554 public boolean scaleImage(SunGraphics2D sg2d, Image img, int x, int y, int width, int height, Color bgColor, ImageObserver observer) { method in class:CRenderer
557 if (!(img instanceof sun.awt.image.ToolkitImage)) { return scaleImage(sg2d, img, x, y, width, height, bgColor); }
566 public boolean scaleImage(SunGraphics2D sg2d, Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgColor, ImageObserver observer) { method in class:CRenderer
569 if (!(img instanceof sun.awt.image.ToolkitImage)) { return scaleImage(sg2
[all...]

Completed in 30 milliseconds