< prev index next >

src/java.desktop/share/classes/sun/java2d/loops/TransformHelper.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2004, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2018, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -94,11 +94,11 @@
                                  SurfaceData src, SurfaceData dst,
                                  Composite comp, Region clip,
                                  AffineTransform itx, int txtype,
                                  int sx1, int sy1, int sx2, int sy2,
                                  int dx1, int dy1, int dx2, int dy2,
-                                 int edges[], int dxoff, int dyoff);
+                                 int[] edges, int dxoff, int dyoff);
 
     public GraphicsPrimitive makePrimitive(SurfaceType srctype,
                                            CompositeType comptype,
                                            SurfaceType dsttype)
     {

@@ -125,11 +125,11 @@
                               SurfaceData src, SurfaceData dst,
                               Composite comp, Region clip,
                               AffineTransform itx, int txtype,
                               int sx1, int sy1, int sx2, int sy2,
                               int dx1, int dy1, int dx2, int dy2,
-                              int edges[], int dxoff, int dyoff)
+                              int[] edges, int dxoff, int dyoff)
         {
             tracePrimitive(target);
             target.Transform(output, src, dst, comp, clip, itx, txtype,
                              sx1, sy1, sx2, sy2,
                              dx1, dy1, dx2, dy2,
< prev index next >