Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/openal
In directory usw-pr-cvs1:/tmp/cvs-serv316
Modified Files:
ALC.java CoreAL.java
Log Message:
rem: getProcAddress removed, since it serves no purpose for Java programmers
Index: ALC.java
CVS Browser:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/openal/ALC.java
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/openal/ALC.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- ALC.java 3 Sep 2002 18:54:40 -0000 1.4
+++ ALC.java 6 Sep 2002 23:35:54 -0000 1.5
@@ -261,15 +261,6 @@
public native boolean isExtensionPresent(ALCdevice device, String extName);
/**
- * Retrieves the address of a specified context extension function.
- *
- * @param device device to query
- * @param extName name of extension to find
- * @return address of function
- */
- public native int getProcAddress(ALCdevice device, String extName);
-
- /**
* retrieves the enum value for a specified enumeration name.
*
* @param device Device to query
Index: CoreAL.java
CVS Browser:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/openal/CoreAL.java
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/openal/CoreAL.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- CoreAL.java 29 Aug 2002 01:11:03 -0000 1.8
+++ CoreAL.java 6 Sep 2002 23:35:55 -0000 1.9
@@ -165,14 +165,6 @@
public native boolean isExtensionPresent(String fname);
/**
- * Returns the address of an OpenAL extension function.
- *
- * @param fname String containing the function name
- * @return int specifying offset of extension
- */
- public native int getProcAddress(String fname);
-
- /**
* Returns the enumeration value of an OpenAL enum described by a string.
*
* @param ename String describing an OpenAL enum
|