1 /*
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
25 import java.awt.Color;
26 import java.awt.Graphics2D;
27 import java.awt.GraphicsConfiguration;
28 import java.awt.GraphicsEnvironment;
29 import java.awt.Image;
30 import java.awt.Rectangle;
31 import java.awt.Shape;
32 import java.awt.geom.AffineTransform;
33 import java.awt.geom.Ellipse2D;
34 import java.awt.image.BufferedImage;
35 import java.awt.image.VolatileImage;
36 import java.io.File;
37 import java.io.IOException;
38
39 import javax.imageio.ImageIO;
40
41 import static java.awt.geom.Rectangle2D.Double;
42
43 /**
44 * @test
45 * @bug 8041644
46 * @summary Tests drawing volatile image to BI using different clip.
47 * Results of the blit compatibleImage to BI used for comparison.
48 * @author Sergey Bylokhov
49 * @run main/othervm -Dsun.java2d.d3d=false IncorrectClipSurface2SW
50 */
51 public final class IncorrectClipSurface2SW {
52
53 private static int[] SCALES = {1, 2, 4};
54 private static int[] SIZES = {127, 3, 2, 1};
55 private static final Shape[] SHAPES = {new Rectangle(0, 0, 0, 0),
56 new Rectangle(0, 0, 1, 1),
57 new Rectangle(0, 1, 1, 1),
58 new Rectangle(1, 0, 1, 1),
59 new Rectangle(1, 1, 1, 1),
60
61 new Ellipse2D.Double(0, 0, 1, 1),
62 new Ellipse2D.Double(0, 1, 1, 1),
63 new Ellipse2D.Double(1, 0, 1, 1),
64 new Ellipse2D.Double(1, 1, 1, 1),
|
1 /*
2 * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
25 import java.awt.Color;
26 import java.awt.Graphics2D;
27 import java.awt.GraphicsConfiguration;
28 import java.awt.GraphicsEnvironment;
29 import java.awt.Image;
30 import java.awt.Rectangle;
31 import java.awt.Shape;
32 import java.awt.geom.AffineTransform;
33 import java.awt.geom.Ellipse2D;
34 import java.awt.image.BufferedImage;
35 import java.awt.image.VolatileImage;
36 import java.io.File;
37 import java.io.IOException;
38
39 import javax.imageio.ImageIO;
40
41 import static java.awt.geom.Rectangle2D.Double;
42
43 /**
44 * @test
45 * @key headful
46 * @bug 8041644
47 * @summary Tests drawing volatile image to BI using different clip.
48 * Results of the blit compatibleImage to BI used for comparison.
49 * @author Sergey Bylokhov
50 * @run main/othervm -Dsun.java2d.d3d=false IncorrectClipSurface2SW
51 */
52 public final class IncorrectClipSurface2SW {
53
54 private static int[] SCALES = {1, 2, 4};
55 private static int[] SIZES = {127, 3, 2, 1};
56 private static final Shape[] SHAPES = {new Rectangle(0, 0, 0, 0),
57 new Rectangle(0, 0, 1, 1),
58 new Rectangle(0, 1, 1, 1),
59 new Rectangle(1, 0, 1, 1),
60 new Rectangle(1, 1, 1, 1),
61
62 new Ellipse2D.Double(0, 0, 1, 1),
63 new Ellipse2D.Double(0, 1, 1, 1),
64 new Ellipse2D.Double(1, 0, 1, 1),
65 new Ellipse2D.Double(1, 1, 1, 1),
|