mod: getSource3f removed, since it isn't in the specs

This commit is contained in:
Brian Matzon 2002-11-19 16:39:57 +00:00
parent b3d37c9ca2
commit d9335b09cb
2 changed files with 0 additions and 19 deletions

View File

@ -321,17 +321,6 @@ public class CoreAL extends BaseAL implements BaseALConstants {
*/
public native void getSourcef(int source, int pname, int floatdata);
/**
* Gets a set of three floating point values from a source.
*
* @param source Source to get property from
* @param pname property to get
* @param v1 bytebuffer address to write float 1 to
* @param v2 bytebuffer address to write float 2 to
* @param v3 bytebuffer address to write float 3 to
*/
public native void getSource3f(int source, int pname, int v1, int v2, int v3);
/**
* Gets a floating point vector property from a Source object.
*

View File

@ -303,14 +303,6 @@ JNIEXPORT void JNICALL Java_org_lwjgl_openal_CoreAL_getSourcei
JNIEXPORT void JNICALL Java_org_lwjgl_openal_CoreAL_getSourcef
(JNIEnv *, jobject, jint, jint, jint);
/*
* Class: org_lwjgl_openal_CoreAL
* Method: getSource3f
* Signature: (IIIII)V
*/
JNIEXPORT void JNICALL Java_org_lwjgl_openal_CoreAL_getSource3f
(JNIEnv *, jobject, jint, jint, jint, jint, jint);
/*
* Class: org_lwjgl_openal_CoreAL
* Method: getSourcefv