From: Carsten W. <ca...@us...> - 2004-12-16 19:47:00
|
Update of /cvsroot/jake2/jake2/src/jake2/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20655/src/jake2/util Modified Files: Lib.java Log Message: the reference to jogl removed Index: Lib.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/util/Lib.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Lib.java 6 Dec 2004 13:47:02 -0000 1.10 --- Lib.java 16 Dec 2004 19:46:49 -0000 1.11 *************** *** 31,36 **** import java.nio.*; - import net.java.games.jogl.util.BufferUtils; - public class Lib { --- 31,34 ---- *************** *** 280,285 **** */ ! public static final int SIZEOF_FLOAT = BufferUtils.SIZEOF_FLOAT; ! public static final int SIZEOF_INT = BufferUtils.SIZEOF_INT; public static FloatBuffer newFloatBuffer(int numElements) { ByteBuffer bb = newByteBuffer(numElements * SIZEOF_FLOAT); --- 278,284 ---- */ ! public static final int SIZEOF_FLOAT = 4; ! public static final int SIZEOF_INT = 4; ! public static FloatBuffer newFloatBuffer(int numElements) { ByteBuffer bb = newByteBuffer(numElements * SIZEOF_FLOAT); |