fixed javadoc

This commit is contained in:
Brian Matzon 2005-12-09 23:37:04 +00:00
parent e27338e9d0
commit 8d68a3824e
2 changed files with 2 additions and 2 deletions

View File

@ -1173,7 +1173,7 @@ public final class AL10 {
* argument will have been updated accordingly.
* </p>
* @param source source to unqueue buffers from
* @param buffers buffers to be unqueued
* @param buffers IntBuffer containing list of names that were unqueued
*/
public static void alSourceUnqueueBuffers(int source, IntBuffer buffers) {
BufferChecks.checkDirect(buffers);

View File

@ -1069,7 +1069,7 @@ public interface AL10 {
* </p>
*
* @param source source to unqueue buffers from
* @param buffers buffers to be unqueued
* @param buffers IntBuffer containing list of names that were unqueued
*/
@ALvoid
void alSourceUnqueueBuffers(@ALuint int source, @AutoSize("buffers") @ALsizei int n, @ALuint IntBuffer buffers);