< prev index next >

src/java.desktop/windows/classes/sun/java2d/windows/GDIWindowSurfaceData.java

Print this page

        

*** 300,311 **** } public Rectangle getBounds() { Rectangle r = peer.getBounds(); r.x = r.y = 0; ! r.width = (int) Math.ceil(r.width * scaleX); ! r.height = (int) Math.ceil(r.height * scaleY); return r; } public boolean copyArea(SunGraphics2D sg2d, int x, int y, int w, int h, int dx, int dy) --- 300,311 ---- } public Rectangle getBounds() { Rectangle r = peer.getBounds(); r.x = r.y = 0; ! r.width = Region.clipRound(r.width * scaleX); ! r.height = Region.clipRound(r.height * scaleY); return r; } public boolean copyArea(SunGraphics2D sg2d, int x, int y, int w, int h, int dx, int dy)
< prev index next >