Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/openal
In directory sc8-pr-cvs1:/tmp/cvs-serv14612
Modified Files:
ALUT.java
Log Message:
rem: alutInit and exit gone
Index: ALUT.java
CVS Browser:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/openal/ALUT.java
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/openal/ALUT.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- ALUT.java 14 Dec 2002 12:38:39 -0000 1.8
+++ ALUT.java 14 Dec 2002 12:42:19 -0000 1.9
@@ -54,8 +54,8 @@
}
/**
- * Override to provide any initialization code after creation.
- */
+ * Override to provide any initialization code after creation.
+ */
protected void init() {
}
@@ -107,13 +107,6 @@
protected native void nDestroy();
/**
- * Initializes the OpenAL engine
- *
- * @param args String array of arguments to engine
- */
- public native void init(String[] args);
-
- /**
* Loads a wave file into memory
*
* @param file name of file to load (in current working directory)
@@ -138,9 +131,4 @@
* @param freq frequency of the data
*/
public native void unloadWAV(int format, int data, int size, int freq);
-
- /**
- * Deinitializes the OpenAL engine
- */
- public native void exit();
}
|