|
| 1 | +/* |
| 2 | + * Copyright Amazon.com Inc. 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 | + */ |
| 23 | + |
| 24 | +import java.awt.AlphaComposite; |
| 25 | +import java.awt.Graphics2D; |
| 26 | +import java.awt.image.BufferedImage; |
| 27 | +import java.util.Arrays; |
| 28 | + |
| 29 | +import static java.awt.image.BufferedImage.TYPE_3BYTE_BGR; |
| 30 | +import static java.awt.image.BufferedImage.TYPE_4BYTE_ABGR; |
| 31 | +import static java.awt.image.BufferedImage.TYPE_4BYTE_ABGR_PRE; |
| 32 | +import static java.awt.image.BufferedImage.TYPE_INT_ARGB; |
| 33 | +import static java.awt.image.BufferedImage.TYPE_INT_ARGB_PRE; |
| 34 | +import static java.awt.image.BufferedImage.TYPE_INT_BGR; |
| 35 | +import static java.awt.image.BufferedImage.TYPE_INT_RGB; |
| 36 | + |
| 37 | +/** |
| 38 | + * @test |
| 39 | + * @bug 8297681 |
| 40 | + * @summary The blit TYPE_4BYTE_ABGR_PRE to TYPE_INT_ARGB_PRE should be "direct" |
| 41 | + */ |
| 42 | +public final class SkipConversionIfPossible { |
| 43 | + |
| 44 | + private static final int SIZE = 256; |
| 45 | + |
| 46 | + public static void main(String[] args) { |
| 47 | + // Initial bug was in the TYPE_4BYTE_ABGR_PRE to TYPE_INT_ARGB_PRE blit. |
| 48 | + // But I checked other blits just in case. |
| 49 | + test(new int[]{TYPE_INT_ARGB_PRE, TYPE_4BYTE_ABGR_PRE}); |
| 50 | + test(new int[]{TYPE_INT_RGB, TYPE_INT_BGR, TYPE_3BYTE_BGR}); |
| 51 | + test(new int[]{TYPE_INT_ARGB, TYPE_4BYTE_ABGR}); |
| 52 | + } |
| 53 | + |
| 54 | + private static void test(int[] types) { |
| 55 | + for (int src : types) { |
| 56 | + for (int dst : types) { |
| 57 | + render(src, dst); |
| 58 | + } |
| 59 | + } |
| 60 | + } |
| 61 | + |
| 62 | + private static void render(int src, int dst) { |
| 63 | + BufferedImage from = new BufferedImage(SIZE, SIZE, src); |
| 64 | + for (int a = 0; a < SIZE; ++a) { |
| 65 | + for (int c = 0; c < SIZE; ++c) { |
| 66 | + // The data is intentionally broken for the argb_pre format, but |
| 67 | + // it should be stored as is in dst if no conversion was done. |
| 68 | + from.getRaster().setPixel(c, a, new int[]{c, c << 24, -c, a}); |
| 69 | + } |
| 70 | + } |
| 71 | + BufferedImage to = new BufferedImage(SIZE, SIZE, dst); |
| 72 | + Graphics2D g = to.createGraphics(); |
| 73 | + g.setComposite(AlphaComposite.Src); |
| 74 | + g.drawImage(from, 0, 0, null); |
| 75 | + g.dispose(); |
| 76 | + |
| 77 | + for (int a = 0; a < SIZE; ++a) { |
| 78 | + for (int c = 0; c < SIZE; ++c) { |
| 79 | + int[] pixel1 = from.getRaster().getPixel(c, a, (int[]) null); |
| 80 | + int[] pixel2 = to.getRaster().getPixel(c, a, (int[]) null); |
| 81 | + if (!Arrays.equals(pixel1, pixel2)) { |
| 82 | + System.err.println(Arrays.toString(pixel1)); |
| 83 | + System.err.println(Arrays.toString(pixel2)); |
| 84 | + throw new RuntimeException(); |
| 85 | + } |
| 86 | + } |
| 87 | + } |
| 88 | + } |
| 89 | +} |
0 commit comments