Skip to content

Commit 8ffed34

Browse files
committedNov 30, 2022
8297681: Unnecessary color conversion during 4BYTE_ABGR_PRE to INT_ARGB_PRE blit
Reviewed-by: prr
1 parent abe532a commit 8ffed34

File tree

2 files changed

+98
-1
lines changed

2 files changed

+98
-1
lines changed
 

‎src/java.desktop/share/native/libawt/java2d/loops/FourByteAbgrPre.c

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -69,6 +69,8 @@ DECLARE_SRCOVER_MASKBLIT(IntArgb, FourByteAbgrPre);
6969
DECLARE_ALPHA_MASKBLIT(IntArgb, FourByteAbgrPre);
7070
DECLARE_SRCOVER_MASKBLIT(IntArgbPre, FourByteAbgrPre);
7171
DECLARE_ALPHA_MASKBLIT(IntArgbPre, FourByteAbgrPre);
72+
DECLARE_SRCOVER_MASKBLIT(FourByteAbgrPre, IntArgbPre);
73+
DECLARE_ALPHA_MASKBLIT(FourByteAbgrPre, IntArgbPre);
7274
DECLARE_ALPHA_MASKBLIT(IntRgb, FourByteAbgrPre);
7375
DECLARE_SOLID_DRAWGLYPHLISTAA(FourByteAbgrPre);
7476
DECLARE_SOLID_DRAWGLYPHLISTLCD(FourByteAbgrPre);
@@ -103,6 +105,8 @@ NativePrimitive FourByteAbgrPrePrimitives[] = {
103105
REGISTER_ALPHA_MASKBLIT(IntArgb, FourByteAbgrPre),
104106
REGISTER_SRCOVER_MASKBLIT(IntArgbPre, FourByteAbgrPre),
105107
REGISTER_ALPHA_MASKBLIT(IntArgbPre, FourByteAbgrPre),
108+
REGISTER_SRCOVER_MASKBLIT(FourByteAbgrPre, IntArgbPre),
109+
REGISTER_ALPHA_MASKBLIT(FourByteAbgrPre, IntArgbPre),
106110
REGISTER_ALPHA_MASKBLIT(IntRgb, FourByteAbgrPre),
107111
REGISTER_SOLID_DRAWGLYPHLISTAA(FourByteAbgrPre),
108112
REGISTER_SOLID_DRAWGLYPHLISTLCD(FourByteAbgrPre),
@@ -177,6 +181,10 @@ DEFINE_SRCOVER_MASKBLIT(IntArgbPre, FourByteAbgrPre, 4ByteArgb)
177181

178182
DEFINE_ALPHA_MASKBLIT(IntArgbPre, FourByteAbgrPre, 4ByteArgb)
179183

184+
DEFINE_SRCOVER_MASKBLIT(FourByteAbgrPre, IntArgbPre, 4ByteArgb)
185+
186+
DEFINE_ALPHA_MASKBLIT(FourByteAbgrPre, IntArgbPre, 4ByteArgb)
187+
180188
DEFINE_ALPHA_MASKBLIT(IntRgb, FourByteAbgrPre, 4ByteArgb)
181189

182190
DEFINE_SOLID_DRAWGLYPHLISTAA(FourByteAbgrPre, 4ByteArgb)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
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

Comments
 (0)
Please sign in to comment.