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

/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java2695 * Intersects <code>destRect</code> with <code>clip</code> and
2696 * overwrites <code>destRect</code> with the result.
2699 private boolean clipTo(Rectangle destRect, Rectangle clip) { argument
2700 int x1 = Math.max(destRect.x, clip.x);
2701 int x2 = Math.min(destRect.x + destRect.width, clip.x + clip.width);
2702 int y1 = Math.max(destRect.y, clip.y);
2703 int y2 = Math.min(destRect.y + destRect.height, clip.y + clip.height);
2705 destRect
[all...]

Completed in 62 milliseconds