diff -r fd16c54261b3 -r 90ce3da70b43 jdk/src/share/native/sun/java2d/loops/ByteBinary4Bit.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/jdk/src/share/native/sun/java2d/loops/ByteBinary4Bit.c Sat Dec 01 00:00:00 2007 +0000 @@ -0,0 +1,115 @@ +/* + * Copyright 2000-2001 Sun Microsystems, Inc. All Rights Reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Sun designates this + * particular file as subject to the "Classpath" exception as provided + * by Sun in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, + * CA 95054 USA or visit www.sun.com if you need additional information or + * have any questions. + */ + +#include "ByteBinary4Bit.h" + +#include "IntArgb.h" + +/* + * This file declares, registers, and defines the various graphics + * primitive loops to manipulate surfaces of type "ByteBinary4Bit". + * + * See also LoopMacros.h + */ + +RegisterFunc RegisterByteBinary4Bit; + +DECLARE_SOLID_FILLRECT(ByteBinary4Bit); +DECLARE_SOLID_FILLSPANS(ByteBinary4Bit); +DECLARE_SOLID_DRAWLINE(ByteBinary4Bit); +DECLARE_XOR_FILLRECT(ByteBinary4Bit); +DECLARE_XOR_FILLSPANS(ByteBinary4Bit); +DECLARE_XOR_DRAWLINE(ByteBinary4Bit); +DECLARE_SOLID_DRAWGLYPHLIST(ByteBinary4Bit); +DECLARE_SOLID_DRAWGLYPHLISTAA(ByteBinary4Bit); +DECLARE_XOR_DRAWGLYPHLIST(ByteBinary4Bit); + +DECLARE_CONVERT_BLIT(ByteBinary4Bit, ByteBinary4Bit); +DECLARE_CONVERT_BLIT(ByteBinary4Bit, IntArgb); +DECLARE_CONVERT_BLIT(IntArgb, ByteBinary4Bit); +DECLARE_XOR_BLIT(IntArgb, ByteBinary4Bit); + +DECLARE_ALPHA_MASKBLIT(ByteBinary4Bit, IntArgb); +DECLARE_ALPHA_MASKBLIT(IntArgb, ByteBinary4Bit); +DECLARE_ALPHA_MASKFILL(ByteBinary4Bit); + +NativePrimitive ByteBinary4BitPrimitives[] = { + REGISTER_SOLID_FILLRECT(ByteBinary4Bit), + REGISTER_SOLID_FILLSPANS(ByteBinary4Bit), + REGISTER_SOLID_LINE_PRIMITIVES(ByteBinary4Bit), + REGISTER_XOR_FILLRECT(ByteBinary4Bit), + REGISTER_XOR_FILLSPANS(ByteBinary4Bit), + REGISTER_XOR_LINE_PRIMITIVES(ByteBinary4Bit), + REGISTER_SOLID_DRAWGLYPHLIST(ByteBinary4Bit), + REGISTER_SOLID_DRAWGLYPHLISTAA(ByteBinary4Bit), + REGISTER_XOR_DRAWGLYPHLIST(ByteBinary4Bit), + + REGISTER_CONVERT_BLIT(ByteBinary4Bit, ByteBinary4Bit), + REGISTER_CONVERT_BLIT(ByteBinary4Bit, IntArgb), + REGISTER_CONVERT_BLIT(IntArgb, ByteBinary4Bit), + REGISTER_XOR_BLIT(IntArgb, ByteBinary4Bit), + + REGISTER_ALPHA_MASKBLIT(ByteBinary4Bit, IntArgb), + REGISTER_ALPHA_MASKBLIT(IntArgb, ByteBinary4Bit), + REGISTER_ALPHA_MASKFILL(ByteBinary4Bit), +}; + +jboolean RegisterByteBinary4Bit(JNIEnv *env) +{ + return RegisterPrimitives(env, ByteBinary4BitPrimitives, + ArraySize(ByteBinary4BitPrimitives)); +} + +DEFINE_BYTE_BINARY_SOLID_FILLRECT(ByteBinary4Bit) + +DEFINE_BYTE_BINARY_SOLID_FILLSPANS(ByteBinary4Bit) + +DEFINE_BYTE_BINARY_SOLID_DRAWLINE(ByteBinary4Bit) + +DEFINE_BYTE_BINARY_XOR_FILLRECT(ByteBinary4Bit) + +DEFINE_BYTE_BINARY_XOR_FILLSPANS(ByteBinary4Bit) + +DEFINE_BYTE_BINARY_XOR_DRAWLINE(ByteBinary4Bit) + +DEFINE_BYTE_BINARY_SOLID_DRAWGLYPHLIST(ByteBinary4Bit) + +DEFINE_BYTE_BINARY_SOLID_DRAWGLYPHLISTAA(ByteBinary4Bit, 3ByteRgb) + +DEFINE_BYTE_BINARY_XOR_DRAWGLYPHLIST(ByteBinary4Bit) + +DEFINE_BYTE_BINARY_CONVERT_BLIT(ByteBinary4Bit, ByteBinary4Bit, 1IntRgb) + +DEFINE_BYTE_BINARY_CONVERT_BLIT(ByteBinary4Bit, IntArgb, 1IntArgb) + +DEFINE_BYTE_BINARY_CONVERT_BLIT(IntArgb, ByteBinary4Bit, 1IntRgb) + +DEFINE_BYTE_BINARY_XOR_BLIT(IntArgb, ByteBinary4Bit) + +DEFINE_BYTE_BINARY_ALPHA_MASKBLIT(ByteBinary4Bit, IntArgb, 4ByteArgb) + +DEFINE_BYTE_BINARY_ALPHA_MASKBLIT(IntArgb, ByteBinary4Bit, 4ByteArgb) + +DEFINE_BYTE_BINARY_ALPHA_MASKFILL(ByteBinary4Bit, 4ByteArgb)