|
From: Elias N. <eli...@us...> - 2005-10-28 15:44:09
|
Update of /cvsroot/java-game-lib/LWJGL/src/templates/org/lwjgl/openal In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14211/src/templates/org/lwjgl/openal Modified Files: AL10.java Log Message: Added missing @Const annotations to opengl and openal functions Index: AL10.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/templates/org/lwjgl/openal/AL10.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- AL10.java 20 Feb 2005 20:53:50 -0000 1.3 +++ AL10.java 28 Oct 2005 15:43:50 -0000 1.4 @@ -636,7 +636,7 @@ */ @StripPostfix("value") @ALvoid - void alListenerfv(@ALenum int pname, @Check("1") FloatBuffer value); + void alListenerfv(@ALenum int pname, @Check("1") @Const FloatBuffer value); /** * Listener attributes are changed using the Listener group of commands. @@ -736,7 +736,7 @@ // TODO: What's the correct minimum value? @StripPostfix("value") @ALvoid - void alSourcefv(@ALuint int source, @ALenum int pname, @Check("1") FloatBuffer value); + void alSourcefv(@ALuint int source, @ALenum int pname, @Check("1") @Const FloatBuffer value); /** * Specifies the position and other properties as taken into account during |