< prev index next >

src/java.desktop/unix/classes/sun/java2d/xr/XRSurfaceData.java

Print this page

        

@@ -367,12 +367,10 @@
         CompositeType comptype = sg2d.imageComp;
         if (sg2d.transformState < SunGraphics2D.TRANSFORM_TRANSLATESCALE &&
             (CompositeType.SrcOverNoEa.equals(comptype) ||
              CompositeType.SrcNoEa.equals(comptype)))
         {
-            x += sg2d.transX;
-            y += sg2d.transY;
             try {
                 SunToolkit.awtLock();
                 boolean needExposures = canSourceSendExposures(x, y, w, h);
                 validateCopyAreaGC(sg2d.getCompClip(), needExposures);
                 renderQueue.copyArea(xid, xid, xgc, x, y, w, h, x + dx, y + dy);
< prev index next >