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

/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java211 public Shape usrClip; field in class:SunGraphics2D
517 * Intersect usrClip bounds and device bounds to determine the composite
1777 if (usrClip instanceof Rectangle) {
1778 r = new Rectangle((Rectangle) usrClip);
1780 r = usrClip.getBounds();
1792 if (usrClip instanceof Rectangle) {
1793 r.setBounds((Rectangle) usrClip);
1795 r.setBounds(usrClip.getBounds());
1868 if (usrClip == null) {
1871 } else if (usrClip instanceo
[all...]
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXSurfaceData.java435 // if (lastClipShape != sg2d.usrClip) shapes are mutable!, and doing "equals" traverses all
437 lastClipShape = sg2d.usrClip;
441 if (sg2d.usrClip instanceof GeneralPath) {
442 gp = (GeneralPath) sg2d.usrClip;
444 gp = new GeneralPath(sg2d.usrClip);

Completed in 42 milliseconds