|
From: Elias N. <eli...@us...> - 2003-04-26 06:54:37
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/opengl In directory sc8-pr-cvs1:/tmp/cvs-serv20054/src/java/org/lwjgl/opengl Modified Files: BaseGL.java Log Message: Removed makeContexCurrent and releaseContext Index: BaseGL.java CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/opengl/BaseGL.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/opengl/BaseGL.java,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- BaseGL.java 30 Mar 2003 19:40:35 -0000 1.16 +++ BaseGL.java 26 Apr 2003 06:54:31 -0000 1.17 @@ -169,15 +169,4 @@ * Natively destroy any GL-related stuff */ private native void nDestroyGL(); - - /** - * Make the GL context current to the current thread - */ - public native void makeContextCurrent(); - - /** - * Release the GL context - */ - public native void releaseContext(); - } |