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.image.BufferedImage;
31 import java.awt.image.VolatileImage;
32 import java.io.File;
33 import java.io.IOException;
34
35 import javax.imageio.ImageIO;
36
37 import static java.awt.Transparency.TRANSLUCENT;
38 import static java.awt.image.BufferedImage.TYPE_4BYTE_ABGR;
39 import static java.awt.image.BufferedImage.TYPE_4BYTE_ABGR_PRE;
40 import static java.awt.image.BufferedImage.TYPE_INT_ARGB;
41 import static java.awt.image.BufferedImage.TYPE_INT_ARGB_PRE;
42
43 /**
44 * @test
45 * @bug 8017626
46 * @summary Tests drawing transparent volatile image to transparent BI.
47 * Results of the blit compatibleImage to transparent BI used for
48 * comparison.
49 * @author Sergey Bylokhov
50 */
51 public final class IncorrectAlphaSurface2SW {
52
53 private static final int[] SCALES = {1, 2, 4, 8};
54 private static final int[] SIZES = {1, 2, 3, 127, 128, 254, 255, 256};
55 private static final int[] dstTypes = {TYPE_INT_ARGB, TYPE_INT_ARGB_PRE,
56 TYPE_4BYTE_ABGR, TYPE_4BYTE_ABGR_PRE};
57 private static final int[] srcTypes = {TRANSLUCENT};
58
59
60 public static void main(final String[] args) throws IOException {
61 GraphicsEnvironment ge = GraphicsEnvironment
62 .getLocalGraphicsEnvironment();
63 GraphicsConfiguration gc = ge.getDefaultScreenDevice()
64 .getDefaultConfiguration();
|
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.image.BufferedImage;
31 import java.awt.image.VolatileImage;
32 import java.io.File;
33 import java.io.IOException;
34
35 import javax.imageio.ImageIO;
36
37 import static java.awt.Transparency.TRANSLUCENT;
38 import static java.awt.image.BufferedImage.TYPE_4BYTE_ABGR;
39 import static java.awt.image.BufferedImage.TYPE_4BYTE_ABGR_PRE;
40 import static java.awt.image.BufferedImage.TYPE_INT_ARGB;
41 import static java.awt.image.BufferedImage.TYPE_INT_ARGB_PRE;
42
43 /**
44 * @test
45 * @key headful
46 * @bug 8017626
47 * @summary Tests drawing transparent volatile image to transparent BI.
48 * Results of the blit compatibleImage to transparent BI used for
49 * comparison.
50 * @author Sergey Bylokhov
51 */
52 public final class IncorrectAlphaSurface2SW {
53
54 private static final int[] SCALES = {1, 2, 4, 8};
55 private static final int[] SIZES = {1, 2, 3, 127, 128, 254, 255, 256};
56 private static final int[] dstTypes = {TYPE_INT_ARGB, TYPE_INT_ARGB_PRE,
57 TYPE_4BYTE_ABGR, TYPE_4BYTE_ABGR_PRE};
58 private static final int[] srcTypes = {TRANSLUCENT};
59
60
61 public static void main(final String[] args) throws IOException {
62 GraphicsEnvironment ge = GraphicsEnvironment
63 .getLocalGraphicsEnvironment();
64 GraphicsConfiguration gc = ge.getDefaultScreenDevice()
65 .getDefaultConfiguration();
|