blob: c3d75cf345229bd613a285ca9fa1c1a99c9861aa [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2000-2001 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 "ByteBinary4Bit.h"
27
28#include "IntArgb.h"
29
30/*
31 * This file declares, registers, and defines the various graphics
32 * primitive loops to manipulate surfaces of type "ByteBinary4Bit".
33 *
34 * See also LoopMacros.h
35 */
36
37RegisterFunc RegisterByteBinary4Bit;
38
39DECLARE_SOLID_FILLRECT(ByteBinary4Bit);
40DECLARE_SOLID_FILLSPANS(ByteBinary4Bit);
41DECLARE_SOLID_DRAWLINE(ByteBinary4Bit);
42DECLARE_XOR_FILLRECT(ByteBinary4Bit);
43DECLARE_XOR_FILLSPANS(ByteBinary4Bit);
44DECLARE_XOR_DRAWLINE(ByteBinary4Bit);
45DECLARE_SOLID_DRAWGLYPHLIST(ByteBinary4Bit);
46DECLARE_SOLID_DRAWGLYPHLISTAA(ByteBinary4Bit);
47DECLARE_XOR_DRAWGLYPHLIST(ByteBinary4Bit);
48
49DECLARE_CONVERT_BLIT(ByteBinary4Bit, ByteBinary4Bit);
50DECLARE_CONVERT_BLIT(ByteBinary4Bit, IntArgb);
51DECLARE_CONVERT_BLIT(IntArgb, ByteBinary4Bit);
52DECLARE_XOR_BLIT(IntArgb, ByteBinary4Bit);
53
54DECLARE_ALPHA_MASKBLIT(ByteBinary4Bit, IntArgb);
55DECLARE_ALPHA_MASKBLIT(IntArgb, ByteBinary4Bit);
56DECLARE_ALPHA_MASKFILL(ByteBinary4Bit);
57
58NativePrimitive ByteBinary4BitPrimitives[] = {
59 REGISTER_SOLID_FILLRECT(ByteBinary4Bit),
60 REGISTER_SOLID_FILLSPANS(ByteBinary4Bit),
61 REGISTER_SOLID_LINE_PRIMITIVES(ByteBinary4Bit),
62 REGISTER_XOR_FILLRECT(ByteBinary4Bit),
63 REGISTER_XOR_FILLSPANS(ByteBinary4Bit),
64 REGISTER_XOR_LINE_PRIMITIVES(ByteBinary4Bit),
65 REGISTER_SOLID_DRAWGLYPHLIST(ByteBinary4Bit),
66 REGISTER_SOLID_DRAWGLYPHLISTAA(ByteBinary4Bit),
67 REGISTER_XOR_DRAWGLYPHLIST(ByteBinary4Bit),
68
69 REGISTER_CONVERT_BLIT(ByteBinary4Bit, ByteBinary4Bit),
70 REGISTER_CONVERT_BLIT(ByteBinary4Bit, IntArgb),
71 REGISTER_CONVERT_BLIT(IntArgb, ByteBinary4Bit),
72 REGISTER_XOR_BLIT(IntArgb, ByteBinary4Bit),
73
74 REGISTER_ALPHA_MASKBLIT(ByteBinary4Bit, IntArgb),
75 REGISTER_ALPHA_MASKBLIT(IntArgb, ByteBinary4Bit),
76 REGISTER_ALPHA_MASKFILL(ByteBinary4Bit),
77};
78
79jboolean RegisterByteBinary4Bit(JNIEnv *env)
80{
81 return RegisterPrimitives(env, ByteBinary4BitPrimitives,
82 ArraySize(ByteBinary4BitPrimitives));
83}
84
85DEFINE_BYTE_BINARY_SOLID_FILLRECT(ByteBinary4Bit)
86
87DEFINE_BYTE_BINARY_SOLID_FILLSPANS(ByteBinary4Bit)
88
89DEFINE_BYTE_BINARY_SOLID_DRAWLINE(ByteBinary4Bit)
90
91DEFINE_BYTE_BINARY_XOR_FILLRECT(ByteBinary4Bit)
92
93DEFINE_BYTE_BINARY_XOR_FILLSPANS(ByteBinary4Bit)
94
95DEFINE_BYTE_BINARY_XOR_DRAWLINE(ByteBinary4Bit)
96
97DEFINE_BYTE_BINARY_SOLID_DRAWGLYPHLIST(ByteBinary4Bit)
98
99DEFINE_BYTE_BINARY_SOLID_DRAWGLYPHLISTAA(ByteBinary4Bit, 3ByteRgb)
100
101DEFINE_BYTE_BINARY_XOR_DRAWGLYPHLIST(ByteBinary4Bit)
102
103DEFINE_BYTE_BINARY_CONVERT_BLIT(ByteBinary4Bit, ByteBinary4Bit, 1IntRgb)
104
105DEFINE_BYTE_BINARY_CONVERT_BLIT(ByteBinary4Bit, IntArgb, 1IntArgb)
106
107DEFINE_BYTE_BINARY_CONVERT_BLIT(IntArgb, ByteBinary4Bit, 1IntRgb)
108
109DEFINE_BYTE_BINARY_XOR_BLIT(IntArgb, ByteBinary4Bit)
110
111DEFINE_BYTE_BINARY_ALPHA_MASKBLIT(ByteBinary4Bit, IntArgb, 4ByteArgb)
112
113DEFINE_BYTE_BINARY_ALPHA_MASKBLIT(IntArgb, ByteBinary4Bit, 4ByteArgb)
114
115DEFINE_BYTE_BINARY_ALPHA_MASKFILL(ByteBinary4Bit, 4ByteArgb)