From: Luke H. <lh...@us...> - 2002-11-30 03:28:32
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/opengl In directory sc8-pr-cvs1:/tmp/cvs-serv13660/java/org/lwjgl/opengl Modified Files: GLU.java Log Message: GLU: added quadricCallback(...) methods GLUQuadricCallbacks: Should now be fully implemented removed files: See the README.txt file for more information. Index: GLU.java CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/opengl/GLU.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/opengl/GLU.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- GLU.java 27 Nov 2002 05:54:27 -0000 1.6 +++ GLU.java 30 Nov 2002 03:28:29 -0000 1.7 @@ -353,4 +353,18 @@ int slices, int stacks ); + + + public native void quadricCallback( + int target, + int type, + String method + ); + public native void quadricCallback( + int target, + int type, + Object obj, + String method + ); + } |