|
From: Caspian Rychlik-P. <ci...@us...> - 2004-04-19 23:01:43
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3912/src/java/org/lwjgl/util Added Files: GLImpl.java IGL.java Log Message: New Object Oriented Wank! --- NEW FILE: GLImpl.java --- /* * Copyright (c) 2002 Light Weight Java Game Library Project * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of 'Light Weight Java Game Library' nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * [...5815 lines suppressed...] * @param x * @param y * @param z */ public void glWindowPos3sARB(short x, short y, short z) { GL.glWindowPos3sARB(x, y, z); } /** * @param res * @param in * @param outX * @param outY * @param outZ * @param outW */ public void glWriteMaskEXT(int res, int in, int outX, int outY, int outZ, int outW) { GL.glWriteMaskEXT(res, in, outX, outY, outZ, outW); } } --- NEW FILE: IGL.java --- /* * Copyright (c) 2003 Shaven Puppy Ltd * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of 'Shaven Puppy' nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * [...5199 lines suppressed...] * @param size * @param stride * @param pPointer */ public void glVertexWeightPointerEXT(int size, int stride, FloatBuffer pPointer); /** * @param size * @param type * @param stride * @param buffer_offset */ public void glVertexWeightPointerEXT(int size, int type, int stride, int buffer_offset); } |