blob: 0935a5fc2a0a668583e9fe3300ffd7014895d00d [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2000-2005 Sun Microsystems, Inc. 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. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26#include "Any4Byte.h"
27#include "FourByteAbgr.h"
28#include "AlphaMacros.h"
29
30#include "IntArgb.h"
31#include "IntArgbBm.h"
32#include "IntArgbPre.h"
33#include "IntRgb.h"
34#include "ThreeByteBgr.h"
35#include "ByteGray.h"
36#include "ByteIndexed.h"
37
38/*
39 * This file declares, registers, and defines the various graphics
40 * primitive loops to manipulate surfaces of type "FourByteAbgr".
41 *
42 * See also LoopMacros.h
43 */
44
45RegisterFunc RegisterFourByteAbgr;
46
47DECLARE_CONVERT_BLIT(FourByteAbgr, IntArgb);
48DECLARE_CONVERT_BLIT(IntArgb, FourByteAbgr);
49DECLARE_CONVERT_BLIT(IntRgb, FourByteAbgr);
50DECLARE_CONVERT_BLIT(ThreeByteBgr, FourByteAbgr);
51DECLARE_CONVERT_BLIT(ByteGray, FourByteAbgr);
52DECLARE_CONVERT_BLIT(ByteIndexed, FourByteAbgr);
53DECLARE_SCALE_BLIT(FourByteAbgr, IntArgb);
54DECLARE_SCALE_BLIT(IntArgb, FourByteAbgr);
55DECLARE_SCALE_BLIT(IntRgb, FourByteAbgr);
56DECLARE_SCALE_BLIT(ThreeByteBgr, FourByteAbgr);
57DECLARE_SCALE_BLIT(ByteGray, FourByteAbgr);
58DECLARE_SCALE_BLIT(ByteIndexed, FourByteAbgr);
59DECLARE_XPAR_CONVERT_BLIT(ByteIndexedBm, FourByteAbgr);
60DECLARE_XPAR_SCALE_BLIT(ByteIndexedBm, FourByteAbgr);
61DECLARE_XPAR_SCALE_BLIT(IntArgbBm, FourByteAbgr);
62DECLARE_XPAR_BLITBG(ByteIndexedBm, FourByteAbgr);
63
64DECLARE_XOR_BLIT(IntArgb, FourByteAbgr);
65DECLARE_SRC_MASKFILL(FourByteAbgr);
66DECLARE_SRCOVER_MASKFILL(FourByteAbgr);
67DECLARE_ALPHA_MASKFILL(FourByteAbgr);
68DECLARE_SRCOVER_MASKBLIT(IntArgb, FourByteAbgr);
69DECLARE_ALPHA_MASKBLIT(IntArgb, FourByteAbgr);
70DECLARE_SRCOVER_MASKBLIT(IntArgbPre, FourByteAbgr);
71DECLARE_ALPHA_MASKBLIT(IntArgbPre, FourByteAbgr);
72DECLARE_ALPHA_MASKBLIT(IntRgb, FourByteAbgr);
73DECLARE_SOLID_DRAWGLYPHLISTAA(FourByteAbgr);
74DECLARE_SOLID_DRAWGLYPHLISTLCD(FourByteAbgr);
75
76DECLARE_TRANSFORMHELPER_FUNCS(FourByteAbgr);
77
78NativePrimitive FourByteAbgrPrimitives[] = {
79 REGISTER_ANY4BYTE_ISOCOPY_BLIT(FourByteAbgr),
80 REGISTER_ANY4BYTE_ISOSCALE_BLIT(FourByteAbgr),
81 REGISTER_CONVERT_BLIT(FourByteAbgr, IntArgb),
82 REGISTER_CONVERT_BLIT(IntArgb, FourByteAbgr),
83 REGISTER_CONVERT_BLIT(IntRgb, FourByteAbgr),
84 REGISTER_CONVERT_BLIT(ThreeByteBgr, FourByteAbgr),
85 REGISTER_CONVERT_BLIT(ByteGray, FourByteAbgr),
86 REGISTER_CONVERT_BLIT(ByteIndexed, FourByteAbgr),
87 REGISTER_SCALE_BLIT(FourByteAbgr, IntArgb),
88 REGISTER_SCALE_BLIT(IntArgb, FourByteAbgr),
89 REGISTER_SCALE_BLIT(IntRgb, FourByteAbgr),
90 REGISTER_SCALE_BLIT(ThreeByteBgr, FourByteAbgr),
91 REGISTER_SCALE_BLIT(ByteGray, FourByteAbgr),
92 REGISTER_SCALE_BLIT(ByteIndexed, FourByteAbgr),
93 REGISTER_XPAR_CONVERT_BLIT(ByteIndexedBm, FourByteAbgr),
94 REGISTER_XPAR_SCALE_BLIT(ByteIndexedBm, FourByteAbgr),
95 REGISTER_XPAR_SCALE_BLIT(IntArgbBm, FourByteAbgr),
96 REGISTER_XPAR_BLITBG(ByteIndexedBm, FourByteAbgr),
97
98 REGISTER_XOR_BLIT(IntArgb, FourByteAbgr),
99 REGISTER_SRC_MASKFILL(FourByteAbgr),
100 REGISTER_SRCOVER_MASKFILL(FourByteAbgr),
101 REGISTER_ALPHA_MASKFILL(FourByteAbgr),
102 REGISTER_SRCOVER_MASKBLIT(IntArgb, FourByteAbgr),
103 REGISTER_ALPHA_MASKBLIT(IntArgb, FourByteAbgr),
104 REGISTER_SRCOVER_MASKBLIT(IntArgbPre, FourByteAbgr),
105 REGISTER_ALPHA_MASKBLIT(IntArgbPre, FourByteAbgr),
106 REGISTER_ALPHA_MASKBLIT(IntRgb, FourByteAbgr),
107 REGISTER_SOLID_DRAWGLYPHLISTAA(FourByteAbgr),
108 REGISTER_SOLID_DRAWGLYPHLISTLCD(FourByteAbgr),
109
110 REGISTER_TRANSFORMHELPER_FUNCS(FourByteAbgr),
111};
112
113jboolean RegisterFourByteAbgr(JNIEnv *env)
114{
115 return RegisterPrimitives(env, FourByteAbgrPrimitives,
116 ArraySize(FourByteAbgrPrimitives));
117}
118
119jint PixelForFourByteAbgr(SurfaceDataRasInfo *pRasInfo, jint rgb)
120{
121 return ((rgb << 8) | (((juint) rgb) >> 24));
122}
123
124DEFINE_CONVERT_BLIT(FourByteAbgr, IntArgb, 1IntArgb)
125
126DEFINE_CONVERT_BLIT(IntArgb, FourByteAbgr, 4ByteArgb)
127
128DEFINE_CONVERT_BLIT(IntRgb, FourByteAbgr, 3ByteRgb)
129
130DEFINE_CONVERT_BLIT(ThreeByteBgr, FourByteAbgr, 3ByteRgb)
131
132DEFINE_CONVERT_BLIT(ByteGray, FourByteAbgr, 3ByteRgb)
133
134DEFINE_CONVERT_BLIT_LUT8(ByteIndexed, FourByteAbgr, ConvertOnTheFly)
135
136DEFINE_SCALE_BLIT(FourByteAbgr, IntArgb, 1IntArgb)
137
138DEFINE_SCALE_BLIT(IntArgb, FourByteAbgr, 4ByteArgb)
139
140DEFINE_SCALE_BLIT(IntRgb, FourByteAbgr, 3ByteRgb)
141
142DEFINE_SCALE_BLIT(ThreeByteBgr, FourByteAbgr, 3ByteRgb)
143
144DEFINE_SCALE_BLIT(ByteGray, FourByteAbgr, 3ByteRgb)
145
146DEFINE_SCALE_BLIT_LUT8(ByteIndexed, FourByteAbgr, ConvertOnTheFly)
147
148DEFINE_XPAR_CONVERT_BLIT_LUT8(ByteIndexedBm, FourByteAbgr, ConvertOnTheFly)
149
150DEFINE_XPAR_SCALE_BLIT_LUT8(ByteIndexedBm, FourByteAbgr, ConvertOnTheFly)
151
152DEFINE_XPAR_SCALE_BLIT(IntArgbBm, FourByteAbgr, 1IntRgb)
153
154DEFINE_XPAR_BLITBG_LUT8(ByteIndexedBm, FourByteAbgr, ConvertOnTheFly)
155
156DEFINE_XOR_BLIT(IntArgb, FourByteAbgr, Any4Byte)
157
158DEFINE_SRC_MASKFILL(FourByteAbgr, 4ByteArgb)
159
160DEFINE_SRCOVER_MASKFILL(FourByteAbgr, 4ByteArgb)
161
162DEFINE_ALPHA_MASKFILL(FourByteAbgr, 4ByteArgb)
163
164DEFINE_SRCOVER_MASKBLIT(IntArgb, FourByteAbgr, 4ByteArgb)
165
166DEFINE_ALPHA_MASKBLIT(IntArgb, FourByteAbgr, 4ByteArgb)
167
168DEFINE_SRCOVER_MASKBLIT(IntArgbPre, FourByteAbgr, 4ByteArgb)
169
170DEFINE_ALPHA_MASKBLIT(IntArgbPre, FourByteAbgr, 4ByteArgb)
171
172DEFINE_ALPHA_MASKBLIT(IntRgb, FourByteAbgr, 4ByteArgb)
173
174DEFINE_SOLID_DRAWGLYPHLISTAA(FourByteAbgr, 4ByteArgb)
175
176DEFINE_SOLID_DRAWGLYPHLISTLCD(FourByteAbgr, 4ByteArgb)
177
178DEFINE_TRANSFORMHELPERS(FourByteAbgr)