Revision: 3162
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3162&view=rev
Author: matzon
Date: 2008-12-03 19:22:20 +0000 (Wed, 03 Dec 2008)
Log Message:
-----------
missing @OutParameter on alSourceUnqueueBuffers
Modified Paths:
--------------
trunk/LWJGL/src/templates/org/lwjgl/openal/AL10.java
Modified: trunk/LWJGL/src/templates/org/lwjgl/openal/AL10.java
===================================================================
--- trunk/LWJGL/src/templates/org/lwjgl/openal/AL10.java 2008-11-26 20:11:13 UTC (rev 3161)
+++ trunk/LWJGL/src/templates/org/lwjgl/openal/AL10.java 2008-12-03 19:22:20 UTC (rev 3162)
@@ -1072,7 +1072,7 @@
* @param buffers IntBuffer containing list of names that were unqueued
*/
@ALvoid
- void alSourceUnqueueBuffers(@ALuint int source, @AutoSize("buffers") @ALsizei int n, @ALuint IntBuffer buffers);
+ void alSourceUnqueueBuffers(@ALuint int source, @AutoSize("buffers") @ALsizei int n, @OutParameter @ALuint IntBuffer buffers);
/**
* <p>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|