jogamp.openal
Class ALImpl

java.lang.Object
  extended by jogamp.openal.ALImpl
All Implemented Interfaces:
AL, ALConstants

public class ALImpl
extends Object
implements AL


Field Summary
 
Fields inherited from interface com.jogamp.openal.AL
HAS_STDDEF
 
Fields inherited from interface com.jogamp.openal.ALConstants
AL_BITS, AL_BUFFER, AL_BUFFERS_PROCESSED, AL_BUFFERS_QUEUED, AL_BYTE_OFFSET, AL_CHANNELS, AL_CONE_INNER_ANGLE, AL_CONE_OUTER_ANGLE, AL_CONE_OUTER_GAIN, AL_DIRECTION, AL_DISTANCE_MODEL, AL_DOPPLER_FACTOR, AL_DOPPLER_VELOCITY, AL_EXPONENT_DISTANCE, AL_EXPONENT_DISTANCE_CLAMPED, AL_EXTENSIONS, AL_FALSE, AL_FORMAT_MONO16, AL_FORMAT_MONO8, AL_FORMAT_STEREO16, AL_FORMAT_STEREO8, AL_FREQUENCY, AL_GAIN, AL_INITIAL, AL_INVALID, AL_INVALID_ENUM, AL_INVALID_NAME, AL_INVALID_OPERATION, AL_INVALID_VALUE, AL_INVERSE_DISTANCE, AL_INVERSE_DISTANCE_CLAMPED, AL_LINEAR_DISTANCE, AL_LINEAR_DISTANCE_CLAMPED, AL_LOOPING, AL_MAX_DISTANCE, AL_MAX_GAIN, AL_MIN_GAIN, AL_NO_ERROR, AL_NONE, AL_ORIENTATION, AL_OUT_OF_MEMORY, AL_PAUSED, AL_PENDING, AL_PITCH, AL_PLAYING, AL_POSITION, AL_PROCESSED, AL_REFERENCE_DISTANCE, AL_RENDERER, AL_ROLLOFF_FACTOR, AL_SAMPLE_OFFSET, AL_SEC_OFFSET, AL_SIZE, AL_SOURCE_RELATIVE, AL_SOURCE_STATE, AL_SOURCE_TYPE, AL_SPEED_OF_SOUND, AL_STATIC, AL_STOPPED, AL_STREAMING, AL_TRUE, AL_UNDETERMINED, AL_UNUSED, AL_VELOCITY, AL_VENDOR, AL_VERSION
 
Constructor Summary
ALImpl()
           
 
Method Summary
 void alBuffer3f(int buffer, int param, float value1, float value2, float value3)
          Entry point (through function pointer) to C language function:
void alBuffer3f(ALuint buffer, ALenum param, ALfloat value1, ALfloat value2, ALfloat value3);
 void alBuffer3i(int buffer, int param, int value1, int value2, int value3)
          Entry point (through function pointer) to C language function:
void alBuffer3i(ALuint buffer, ALenum param, ALint value1, ALint value2, ALint value3);
 void alBufferData(int buffer, int format, Buffer data, int size, int freq)
          Entry point (through function pointer) to C language function:
void alBufferData(ALuint buffer, ALenum format, const ALvoid * data, ALsizei size, ALsizei freq);
 void alBufferf(int buffer, int param, float value)
          Entry point (through function pointer) to C language function:
void alBufferf(ALuint buffer, ALenum param, ALfloat value);
 void alBufferfv(int buffer, int param, float[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alBufferfv(ALuint buffer, ALenum param, const ALfloat * values);
 void alBufferfv(int buffer, int param, FloatBuffer values)
          Entry point (through function pointer) to C language function:
void alBufferfv(ALuint buffer, ALenum param, const ALfloat * values);
 void alBufferi(int buffer, int param, int value)
          Entry point (through function pointer) to C language function:
void alBufferi(ALuint buffer, ALenum param, ALint value);
 void alBufferiv(int buffer, int param, int[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alBufferiv(ALuint buffer, ALenum param, const ALint * values);
 void alBufferiv(int buffer, int param, IntBuffer values)
          Entry point (through function pointer) to C language function:
void alBufferiv(ALuint buffer, ALenum param, const ALint * values);
 void alDeleteBuffers(int n, int[] buffers, int buffers_offset)
          Entry point (through function pointer) to C language function:
void alDeleteBuffers(ALsizei n, const ALuint * buffers);
 void alDeleteBuffers(int n, IntBuffer buffers)
          Entry point (through function pointer) to C language function:
void alDeleteBuffers(ALsizei n, const ALuint * buffers);
 void alDeleteSources(int n, int[] sources, int sources_offset)
          Entry point (through function pointer) to C language function:
void alDeleteSources(ALsizei n, const ALuint * sources);
 void alDeleteSources(int n, IntBuffer sources)
          Entry point (through function pointer) to C language function:
void alDeleteSources(ALsizei n, const ALuint * sources);
 void alDisable(int capability)
          Entry point (through function pointer) to C language function:
void alDisable(ALenum capability);
 void alDistanceModel(int distanceModel)
          Entry point (through function pointer) to C language function:
void alDistanceModel(ALenum distanceModel);
 void alDopplerFactor(float value)
          Entry point (through function pointer) to C language function:
void alDopplerFactor(ALfloat value);
 void alDopplerVelocity(float value)
          Entry point (through function pointer) to C language function:
void alDopplerVelocity(ALfloat value);
 void alEnable(int capability)
          Entry point (through function pointer) to C language function:
void alEnable(ALenum capability);
 void alGenBuffers(int n, int[] buffers, int buffers_offset)
          Entry point (through function pointer) to C language function:
void alGenBuffers(ALsizei n, ALuint * buffers);
 void alGenBuffers(int n, IntBuffer buffers)
          Entry point (through function pointer) to C language function:
void alGenBuffers(ALsizei n, ALuint * buffers);
 void alGenSources(int n, int[] sources, int sources_offset)
          Entry point (through function pointer) to C language function:
void alGenSources(ALsizei n, ALuint * sources);
 void alGenSources(int n, IntBuffer sources)
          Entry point (through function pointer) to C language function:
void alGenSources(ALsizei n, ALuint * sources);
 boolean alGetBoolean(int param)
          Entry point (through function pointer) to C language function:
ALboolean alGetBoolean(ALenum param);
 void alGetBooleanv(int param, byte[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alGetBooleanv(ALenum param, ALboolean * values);
 void alGetBooleanv(int param, ByteBuffer values)
          Entry point (through function pointer) to C language function:
void alGetBooleanv(ALenum param, ALboolean * values);
 void alGetBuffer3f(int buffer, int param, float[] value1, int value1_offset, float[] value2, int value2_offset, float[] value3, int value3_offset)
          Entry point (through function pointer) to C language function:
void alGetBuffer3f(ALuint buffer, ALenum param, ALfloat * value1, ALfloat * value2, ALfloat * value3);
 void alGetBuffer3f(int buffer, int param, FloatBuffer value1, FloatBuffer value2, FloatBuffer value3)
          Entry point (through function pointer) to C language function:
void alGetBuffer3f(ALuint buffer, ALenum param, ALfloat * value1, ALfloat * value2, ALfloat * value3);
 void alGetBuffer3i(int buffer, int param, int[] value1, int value1_offset, int[] value2, int value2_offset, int[] value3, int value3_offset)
          Entry point (through function pointer) to C language function:
void alGetBuffer3i(ALuint buffer, ALenum param, ALint * value1, ALint * value2, ALint * value3);
 void alGetBuffer3i(int buffer, int param, IntBuffer value1, IntBuffer value2, IntBuffer value3)
          Entry point (through function pointer) to C language function:
void alGetBuffer3i(ALuint buffer, ALenum param, ALint * value1, ALint * value2, ALint * value3);
 void alGetBufferf(int buffer, int param, float[] value, int value_offset)
          Entry point (through function pointer) to C language function:
void alGetBufferf(ALuint buffer, ALenum param, ALfloat * value);
 void alGetBufferf(int buffer, int param, FloatBuffer value)
          Entry point (through function pointer) to C language function:
void alGetBufferf(ALuint buffer, ALenum param, ALfloat * value);
 void alGetBufferfv(int buffer, int param, float[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alGetBufferfv(ALuint buffer, ALenum param, ALfloat * values);
 void alGetBufferfv(int buffer, int param, FloatBuffer values)
          Entry point (through function pointer) to C language function:
void alGetBufferfv(ALuint buffer, ALenum param, ALfloat * values);
 void alGetBufferi(int buffer, int param, int[] value, int value_offset)
          Entry point (through function pointer) to C language function:
void alGetBufferi(ALuint buffer, ALenum param, ALint * value);
 void alGetBufferi(int buffer, int param, IntBuffer value)
          Entry point (through function pointer) to C language function:
void alGetBufferi(ALuint buffer, ALenum param, ALint * value);
 void alGetBufferiv(int buffer, int param, int[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alGetBufferiv(ALuint buffer, ALenum param, ALint * values);
 void alGetBufferiv(int buffer, int param, IntBuffer values)
          Entry point (through function pointer) to C language function:
void alGetBufferiv(ALuint buffer, ALenum param, ALint * values);
 double alGetDouble(int param)
          Entry point (through function pointer) to C language function:
ALdouble alGetDouble(ALenum param);
 void alGetDoublev(int param, double[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alGetDoublev(ALenum param, ALdouble * values);
 void alGetDoublev(int param, DoubleBuffer values)
          Entry point (through function pointer) to C language function:
void alGetDoublev(ALenum param, ALdouble * values);
 int alGetEnumValue(String ename)
          Entry point (through function pointer) to C language function:
ALenum alGetEnumValue(const ALchar * ename);
 int alGetError()
          Entry point (through function pointer) to C language function:
ALenum alGetError(void);
 float alGetFloat(int param)
          Entry point (through function pointer) to C language function:
ALfloat alGetFloat(ALenum param);
 void alGetFloatv(int param, float[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alGetFloatv(ALenum param, ALfloat * values);
 void alGetFloatv(int param, FloatBuffer values)
          Entry point (through function pointer) to C language function:
void alGetFloatv(ALenum param, ALfloat * values);
 int alGetInteger(int param)
          Entry point (through function pointer) to C language function:
ALint alGetInteger(ALenum param);
 void alGetIntegerv(int param, int[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alGetIntegerv(ALenum param, ALint * values);
 void alGetIntegerv(int param, IntBuffer values)
          Entry point (through function pointer) to C language function:
void alGetIntegerv(ALenum param, ALint * values);
 void alGetListener3f(int param, float[] value1, int value1_offset, float[] value2, int value2_offset, float[] value3, int value3_offset)
          Entry point (through function pointer) to C language function:
void alGetListener3f(ALenum param, ALfloat * value1, ALfloat * value2, ALfloat * value3);
 void alGetListener3f(int param, FloatBuffer value1, FloatBuffer value2, FloatBuffer value3)
          Entry point (through function pointer) to C language function:
void alGetListener3f(ALenum param, ALfloat * value1, ALfloat * value2, ALfloat * value3);
 void alGetListener3i(int param, int[] value1, int value1_offset, int[] value2, int value2_offset, int[] value3, int value3_offset)
          Entry point (through function pointer) to C language function:
void alGetListener3i(ALenum param, ALint * value1, ALint * value2, ALint * value3);
 void alGetListener3i(int param, IntBuffer value1, IntBuffer value2, IntBuffer value3)
          Entry point (through function pointer) to C language function:
void alGetListener3i(ALenum param, ALint * value1, ALint * value2, ALint * value3);
 void alGetListenerf(int param, float[] value, int value_offset)
          Entry point (through function pointer) to C language function:
void alGetListenerf(ALenum param, ALfloat * value);
 void alGetListenerf(int param, FloatBuffer value)
          Entry point (through function pointer) to C language function:
void alGetListenerf(ALenum param, ALfloat * value);
 void alGetListenerfv(int param, float[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alGetListenerfv(ALenum param, ALfloat * values);
 void alGetListenerfv(int param, FloatBuffer values)
          Entry point (through function pointer) to C language function:
void alGetListenerfv(ALenum param, ALfloat * values);
 void alGetListeneri(int param, int[] value, int value_offset)
          Entry point (through function pointer) to C language function:
void alGetListeneri(ALenum param, ALint * value);
 void alGetListeneri(int param, IntBuffer value)
          Entry point (through function pointer) to C language function:
void alGetListeneri(ALenum param, ALint * value);
 void alGetListeneriv(int param, int[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alGetListeneriv(ALenum param, ALint * values);
 void alGetListeneriv(int param, IntBuffer values)
          Entry point (through function pointer) to C language function:
void alGetListeneriv(ALenum param, ALint * values);
 void alGetSource3f(int source, int param, float[] value1, int value1_offset, float[] value2, int value2_offset, float[] value3, int value3_offset)
          Entry point (through function pointer) to C language function:
void alGetSource3f(ALuint source, ALenum param, ALfloat * value1, ALfloat * value2, ALfloat * value3);
 void alGetSource3f(int source, int param, FloatBuffer value1, FloatBuffer value2, FloatBuffer value3)
          Entry point (through function pointer) to C language function:
void alGetSource3f(ALuint source, ALenum param, ALfloat * value1, ALfloat * value2, ALfloat * value3);
 void alGetSource3i(int source, int param, int[] value1, int value1_offset, int[] value2, int value2_offset, int[] value3, int value3_offset)
          Entry point (through function pointer) to C language function:
void alGetSource3i(ALuint source, ALenum param, ALint * value1, ALint * value2, ALint * value3);
 void alGetSource3i(int source, int param, IntBuffer value1, IntBuffer value2, IntBuffer value3)
          Entry point (through function pointer) to C language function:
void alGetSource3i(ALuint source, ALenum param, ALint * value1, ALint * value2, ALint * value3);
 void alGetSourcef(int source, int param, float[] value, int value_offset)
          Entry point (through function pointer) to C language function:
void alGetSourcef(ALuint source, ALenum param, ALfloat * value);
 void alGetSourcef(int source, int param, FloatBuffer value)
          Entry point (through function pointer) to C language function:
void alGetSourcef(ALuint source, ALenum param, ALfloat * value);
 void alGetSourcefv(int source, int param, float[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alGetSourcefv(ALuint source, ALenum param, ALfloat * values);
 void alGetSourcefv(int source, int param, FloatBuffer values)
          Entry point (through function pointer) to C language function:
void alGetSourcefv(ALuint source, ALenum param, ALfloat * values);
 void alGetSourcei(int source, int param, int[] value, int value_offset)
          Entry point (through function pointer) to C language function:
void alGetSourcei(ALuint source, ALenum param, ALint * value);
 void alGetSourcei(int source, int param, IntBuffer value)
          Entry point (through function pointer) to C language function:
void alGetSourcei(ALuint source, ALenum param, ALint * value);
 void alGetSourceiv(int source, int param, int[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alGetSourceiv(ALuint source, ALenum param, ALint * values);
 void alGetSourceiv(int source, int param, IntBuffer values)
          Entry point (through function pointer) to C language function:
void alGetSourceiv(ALuint source, ALenum param, ALint * values);
 String alGetString(int param)
          Entry point (through function pointer) to C language function:
const ALchar * alGetString(ALenum param);
 boolean alIsBuffer(int buffer)
          Entry point (through function pointer) to C language function:
ALboolean alIsBuffer(ALuint buffer);
 boolean alIsEnabled(int capability)
          Entry point (through function pointer) to C language function:
ALboolean alIsEnabled(ALenum capability);
 boolean alIsExtensionPresent(String extname)
          Entry point (through function pointer) to C language function:
ALboolean alIsExtensionPresent(const ALchar * extname);
 boolean alIsSource(int source)
          Entry point (through function pointer) to C language function:
ALboolean alIsSource(ALuint source);
 void alListener3f(int param, float value1, float value2, float value3)
          Entry point (through function pointer) to C language function:
void alListener3f(ALenum param, ALfloat value1, ALfloat value2, ALfloat value3);
 void alListener3i(int param, int value1, int value2, int value3)
          Entry point (through function pointer) to C language function:
void alListener3i(ALenum param, ALint value1, ALint value2, ALint value3);
 void alListenerf(int param, float value)
          Entry point (through function pointer) to C language function:
void alListenerf(ALenum param, ALfloat value);
 void alListenerfv(int param, float[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alListenerfv(ALenum param, const ALfloat * values);
 void alListenerfv(int param, FloatBuffer values)
          Entry point (through function pointer) to C language function:
void alListenerfv(ALenum param, const ALfloat * values);
 void alListeneri(int param, int value)
          Entry point (through function pointer) to C language function:
void alListeneri(ALenum param, ALint value);
 void alListeneriv(int param, int[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alListeneriv(ALenum param, const ALint * values);
 void alListeneriv(int param, IntBuffer values)
          Entry point (through function pointer) to C language function:
void alListeneriv(ALenum param, const ALint * values);
 void alSource3f(int source, int param, float value1, float value2, float value3)
          Entry point (through function pointer) to C language function:
void alSource3f(ALuint source, ALenum param, ALfloat value1, ALfloat value2, ALfloat value3);
 void alSource3i(int source, int param, int value1, int value2, int value3)
          Entry point (through function pointer) to C language function:
void alSource3i(ALuint source, ALenum param, ALint value1, ALint value2, ALint value3);
 void alSourcef(int source, int param, float value)
          Entry point (through function pointer) to C language function:
void alSourcef(ALuint source, ALenum param, ALfloat value);
 void alSourcefv(int source, int param, float[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alSourcefv(ALuint source, ALenum param, const ALfloat * values);
 void alSourcefv(int source, int param, FloatBuffer values)
          Entry point (through function pointer) to C language function:
void alSourcefv(ALuint source, ALenum param, const ALfloat * values);
 void alSourcei(int source, int param, int value)
          Entry point (through function pointer) to C language function:
void alSourcei(ALuint source, ALenum param, ALint value);
 void alSourceiv(int source, int param, int[] values, int values_offset)
          Entry point (through function pointer) to C language function:
void alSourceiv(ALuint source, ALenum param, const ALint * values);
 void alSourceiv(int source, int param, IntBuffer values)
          Entry point (through function pointer) to C language function:
void alSourceiv(ALuint source, ALenum param, const ALint * values);
 void alSourcePause(int source)
          Entry point (through function pointer) to C language function:
void alSourcePause(ALuint source);
 void alSourcePausev(int n, int[] sources, int sources_offset)
          Entry point (through function pointer) to C language function:
void alSourcePausev(ALsizei n, const ALuint * sources);
 void alSourcePausev(int n, IntBuffer sources)
          Entry point (through function pointer) to C language function:
void alSourcePausev(ALsizei n, const ALuint * sources);
 void alSourcePlay(int source)
          Entry point (through function pointer) to C language function:
void alSourcePlay(ALuint source);
 void alSourcePlayv(int n, int[] sources, int sources_offset)
          Entry point (through function pointer) to C language function:
void alSourcePlayv(ALsizei n, const ALuint * sources);
 void alSourcePlayv(int n, IntBuffer sources)
          Entry point (through function pointer) to C language function:
void alSourcePlayv(ALsizei n, const ALuint * sources);
 void alSourceQueueBuffers(int source, int nb, int[] buffers, int buffers_offset)
          Entry point (through function pointer) to C language function:
void alSourceQueueBuffers(ALuint source, ALsizei nb, const ALuint * buffers);
 void alSourceQueueBuffers(int source, int nb, IntBuffer buffers)
          Entry point (through function pointer) to C language function:
void alSourceQueueBuffers(ALuint source, ALsizei nb, const ALuint * buffers);
 void alSourceRewind(int source)
          Entry point (through function pointer) to C language function:
void alSourceRewind(ALuint source);
 void alSourceRewindv(int n, int[] sources, int sources_offset)
          Entry point (through function pointer) to C language function:
void alSourceRewindv(ALsizei n, const ALuint * sources);
 void alSourceRewindv(int n, IntBuffer sources)
          Entry point (through function pointer) to C language function:
void alSourceRewindv(ALsizei n, const ALuint * sources);
 void alSourceStop(int source)
          Entry point (through function pointer) to C language function:
void alSourceStop(ALuint source);
 void alSourceStopv(int n, int[] sources, int sources_offset)
          Entry point (through function pointer) to C language function:
void alSourceStopv(ALsizei n, const ALuint * sources);
 void alSourceStopv(int n, IntBuffer sources)
          Entry point (through function pointer) to C language function:
void alSourceStopv(ALsizei n, const ALuint * sources);
 void alSourceUnqueueBuffers(int source, int nb, int[] buffers, int buffers_offset)
          Entry point (through function pointer) to C language function:
void alSourceUnqueueBuffers(ALuint source, ALsizei nb, ALuint * buffers);
 void alSourceUnqueueBuffers(int source, int nb, IntBuffer buffers)
          Entry point (through function pointer) to C language function:
void alSourceUnqueueBuffers(ALuint source, ALsizei nb, ALuint * buffers);
 void alSpeedOfSound(float value)
          Entry point (through function pointer) to C language function:
void alSpeedOfSound(ALfloat value);
static ALProcAddressTable getALProcAddressTable()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ALImpl

public ALImpl()
Method Detail

alBuffer3f

public void alBuffer3f(int buffer,
                       int param,
                       float value1,
                       float value2,
                       float value3)
Entry point (through function pointer) to C language function:
void alBuffer3f(ALuint buffer, ALenum param, ALfloat value1, ALfloat value2, ALfloat value3);

Specified by:
alBuffer3f in interface AL

alBuffer3i

public void alBuffer3i(int buffer,
                       int param,
                       int value1,
                       int value2,
                       int value3)
Entry point (through function pointer) to C language function:
void alBuffer3i(ALuint buffer, ALenum param, ALint value1, ALint value2, ALint value3);

Specified by:
alBuffer3i in interface AL

alBufferData

public void alBufferData(int buffer,
                         int format,
                         Buffer data,
                         int size,
                         int freq)
Entry point (through function pointer) to C language function:
void alBufferData(ALuint buffer, ALenum format, const ALvoid * data, ALsizei size, ALsizei freq);

Specified by:
alBufferData in interface AL
Parameters:
data - a direct or array-backed Buffer

alBufferf

public void alBufferf(int buffer,
                      int param,
                      float value)
Entry point (through function pointer) to C language function:
void alBufferf(ALuint buffer, ALenum param, ALfloat value);

Specified by:
alBufferf in interface AL

alBufferfv

public void alBufferfv(int buffer,
                       int param,
                       FloatBuffer values)
Entry point (through function pointer) to C language function:
void alBufferfv(ALuint buffer, ALenum param, const ALfloat * values);

Specified by:
alBufferfv in interface AL
Parameters:
values - a direct or array-backed FloatBuffer

alBufferfv

public void alBufferfv(int buffer,
                       int param,
                       float[] values,
                       int values_offset)
Entry point (through function pointer) to C language function:
void alBufferfv(ALuint buffer, ALenum param, const ALfloat * values);

Specified by:
alBufferfv in interface AL

alBufferi

public void alBufferi(int buffer,
                      int param,
                      int value)
Entry point (through function pointer) to C language function:
void alBufferi(ALuint buffer, ALenum param, ALint value);

Specified by:
alBufferi in interface AL

alBufferiv

public void alBufferiv(int buffer,
                       int param,
                       IntBuffer values)
Entry point (through function pointer) to C language function:
void alBufferiv(ALuint buffer, ALenum param, const ALint * values);

Specified by:
alBufferiv in interface AL
Parameters:
values - a direct or array-backed IntBuffer

alBufferiv

public void alBufferiv(int buffer,
                       int param,
                       int[] values,
                       int values_offset)
Entry point (through function pointer) to C language function:
void alBufferiv(ALuint buffer, ALenum param, const ALint * values);

Specified by:
alBufferiv in interface AL

alDeleteBuffers

public void alDeleteBuffers(int n,
                            IntBuffer buffers)
Entry point (through function pointer) to C language function:
void alDeleteBuffers(ALsizei n, const ALuint * buffers);

Specified by:
alDeleteBuffers in interface AL
Parameters:
buffers - a direct or array-backed IntBuffer

alDeleteBuffers

public void alDeleteBuffers(int n,
                            int[] buffers,
                            int buffers_offset)
Entry point (through function pointer) to C language function:
void alDeleteBuffers(ALsizei n, const ALuint * buffers);

Specified by:
alDeleteBuffers in interface AL

alDeleteSources

public void alDeleteSources(int n,
                            IntBuffer sources)
Entry point (through function pointer) to C language function:
void alDeleteSources(ALsizei n, const ALuint * sources);

Specified by:
alDeleteSources in interface AL
Parameters:
sources - a direct or array-backed IntBuffer

alDeleteSources

public void alDeleteSources(int n,
                            int[] sources,
                            int sources_offset)
Entry point (through function pointer) to C language function:
void alDeleteSources(ALsizei n, const ALuint * sources);

Specified by:
alDeleteSources in interface AL

alDisable

public void alDisable(int capability)
Entry point (through function pointer) to C language function:
void alDisable(ALenum capability);

Specified by:
alDisable in interface AL

alDistanceModel

public void alDistanceModel(int distanceModel)
Entry point (through function pointer) to C language function:
void alDistanceModel(ALenum distanceModel);

Specified by:
alDistanceModel in interface AL

alDopplerFactor

public void alDopplerFactor(float value)
Entry point (through function pointer) to C language function:
void alDopplerFactor(ALfloat value);

Specified by:
alDopplerFactor in interface AL

alDopplerVelocity

public void alDopplerVelocity(float value)
Entry point (through function pointer) to C language function:
void alDopplerVelocity(ALfloat value);

Specified by:
alDopplerVelocity in interface AL

alEnable

public void alEnable(int capability)
Entry point (through function pointer) to C language function:
void alEnable(ALenum capability);

Specified by:
alEnable in interface AL

alGenBuffers

public void alGenBuffers(int n,
                         IntBuffer buffers)
Entry point (through function pointer) to C language function:
void alGenBuffers(ALsizei n, ALuint * buffers);

Specified by:
alGenBuffers in interface AL
Parameters:
buffers - a direct or array-backed IntBuffer

alGenBuffers

public void alGenBuffers(int n,
                         int[] buffers,
                         int buffers_offset)
Entry point (through function pointer) to C language function:
void alGenBuffers(ALsizei n, ALuint * buffers);

Specified by:
alGenBuffers in interface AL

alGenSources

public void alGenSources(int n,
                         IntBuffer sources)
Entry point (through function pointer) to C language function:
void alGenSources(ALsizei n, ALuint * sources);

Specified by:
alGenSources in interface AL
Parameters:
sources - a direct or array-backed IntBuffer

alGenSources

public void alGenSources(int n,
                         int[] sources,
                         int sources_offset)
Entry point (through function pointer) to C language function:
void alGenSources(ALsizei n, ALuint * sources);

Specified by:
alGenSources in interface AL

alGetBoolean

public boolean alGetBoolean(int param)
Entry point (through function pointer) to C language function:
ALboolean alGetBoolean(ALenum param);

Specified by:
alGetBoolean in interface AL

alGetBooleanv

public void alGetBooleanv(int param,
                          ByteBuffer values)
Entry point (through function pointer) to C language function:
void alGetBooleanv(ALenum param, ALboolean * values);

Specified by:
alGetBooleanv in interface AL
Parameters:
values - a direct or array-backed ByteBuffer

alGetBooleanv

public void alGetBooleanv(int param,
                          byte[] values,
                          int values_offset)
Entry point (through function pointer) to C language function:
void alGetBooleanv(ALenum param, ALboolean * values);

Specified by:
alGetBooleanv in interface AL

alGetBuffer3f

public void alGetBuffer3f(int buffer,
                          int param,
                          FloatBuffer value1,
                          FloatBuffer value2,
                          FloatBuffer value3)
Entry point (through function pointer) to C language function:
void alGetBuffer3f(ALuint buffer, ALenum param, ALfloat * value1, ALfloat * value2, ALfloat * value3);

Specified by:
alGetBuffer3f in interface AL
Parameters:
value1 - a direct or array-backed FloatBuffer
value2 - a direct or array-backed FloatBuffer
value3 - a direct or array-backed FloatBuffer

alGetBuffer3f

public void alGetBuffer3f(int buffer,
                          int param,
                          float[] value1,
                          int value1_offset,
                          float[] value2,
                          int value2_offset,
                          float[] value3,
                          int value3_offset)
Entry point (through function pointer) to C language function:
void alGetBuffer3f(ALuint buffer, ALenum param, ALfloat * value1, ALfloat * value2, ALfloat * value3);

Specified by:
alGetBuffer3f in interface AL

alGetBuffer3i

public void alGetBuffer3i(int buffer,
                          int param,
                          IntBuffer value1,
                          IntBuffer value2,
                          IntBuffer value3)
Entry point (through function pointer) to C language function:
void alGetBuffer3i(ALuint buffer, ALenum param, ALint * value1, ALint * value2, ALint * value3);

Specified by:
alGetBuffer3i in interface AL
Parameters:
value1 - a direct or array-backed IntBuffer
value2 - a direct or array-backed IntBuffer
value3 - a direct or array-backed IntBuffer

alGetBuffer3i

public void alGetBuffer3i(int buffer,
                          int param,
                          int[] value1,
                          int value1_offset,
                          int[] value2,
                          int value2_offset,
                          int[] value3,
                          int value3_offset)
Entry point (through function pointer) to C language function:
void alGetBuffer3i(ALuint buffer, ALenum param, ALint * value1, ALint * value2, ALint * value3);

Specified by:
alGetBuffer3i in interface AL

alGetBufferf

public void alGetBufferf(int buffer,
                         int param,
                         FloatBuffer value)
Entry point (through function pointer) to C language function:
void alGetBufferf(ALuint buffer, ALenum param, ALfloat * value);

Specified by:
alGetBufferf in interface AL
Parameters:
value - a direct or array-backed FloatBuffer

alGetBufferf

public void alGetBufferf(int buffer,
                         int param,
                         float[] value,
                         int value_offset)
Entry point (through function pointer) to C language function:
void alGetBufferf(ALuint buffer, ALenum param, ALfloat * value);

Specified by:
alGetBufferf in interface AL

alGetBufferfv

public void alGetBufferfv(int buffer,
                          int param,
                          FloatBuffer values)
Entry point (through function pointer) to C language function:
void alGetBufferfv(ALuint buffer, ALenum param, ALfloat * values);

Specified by:
alGetBufferfv in interface AL
Parameters:
values - a direct or array-backed FloatBuffer

alGetBufferfv

public void alGetBufferfv(int buffer,
                          int param,
                          float[] values,
                          int values_offset)
Entry point (through function pointer) to C language function:
void alGetBufferfv(ALuint buffer, ALenum param, ALfloat * values);

Specified by:
alGetBufferfv in interface AL

alGetBufferi

public void alGetBufferi(int buffer,
                         int param,
                         IntBuffer value)
Entry point (through function pointer) to C language function:
void alGetBufferi(ALuint buffer, ALenum param, ALint * value);

Specified by:
alGetBufferi in interface AL
Parameters:
value - a direct or array-backed IntBuffer

alGetBufferi

public void alGetBufferi(int buffer,
                         int param,
                         int[] value,
                         int value_offset)
Entry point (through function pointer) to C language function:
void alGetBufferi(ALuint buffer, ALenum param, ALint * value);

Specified by:
alGetBufferi in interface AL

alGetBufferiv

public void alGetBufferiv(int buffer,
                          int param,
                          IntBuffer values)
Entry point (through function pointer) to C language function:
void alGetBufferiv(ALuint buffer, ALenum param, ALint * values);

Specified by:
alGetBufferiv in interface AL
Parameters:
values - a direct or array-backed IntBuffer

alGetBufferiv

public void alGetBufferiv(int buffer,
                          int param,
                          int[] values,
                          int values_offset)
Entry point (through function pointer) to C language function:
void alGetBufferiv(ALuint buffer, ALenum param, ALint * values);

Specified by:
alGetBufferiv in interface AL

alGetDouble

public double alGetDouble(int param)
Entry point (through function pointer) to C language function:
ALdouble alGetDouble(ALenum param);

Specified by:
alGetDouble in interface AL

alGetDoublev

public void alGetDoublev(int param,
                         DoubleBuffer values)
Entry point (through function pointer) to C language function:
void alGetDoublev(ALenum param, ALdouble * values);

Specified by:
alGetDoublev in interface AL
Parameters:
values - a direct or array-backed DoubleBuffer

alGetDoublev

public void alGetDoublev(int param,
                         double[] values,
                         int values_offset)
Entry point (through function pointer) to C language function:
void alGetDoublev(ALenum param, ALdouble * values);

Specified by:
alGetDoublev in interface AL

alGetEnumValue

public int alGetEnumValue(String ename)
Entry point (through function pointer) to C language function:
ALenum alGetEnumValue(const ALchar * ename);

Specified by:
alGetEnumValue in interface AL

alGetError

public int alGetError()
Entry point (through function pointer) to C language function:
ALenum alGetError(void);

Specified by:
alGetError in interface AL

alGetFloat

public float alGetFloat(int param)
Entry point (through function pointer) to C language function:
ALfloat alGetFloat(ALenum param);

Specified by:
alGetFloat in interface AL

alGetFloatv

public void alGetFloatv(int param,
                        FloatBuffer values)
Entry point (through function pointer) to C language function:
void alGetFloatv(ALenum param, ALfloat * values);

Specified by:
alGetFloatv in interface AL
Parameters:
values - a direct or array-backed FloatBuffer

alGetFloatv

public void alGetFloatv(int param,
                        float[] values,
                        int values_offset)
Entry point (through function pointer) to C language function:
void alGetFloatv(ALenum param, ALfloat * values);

Specified by:
alGetFloatv in interface AL

alGetInteger

public int alGetInteger(int param)
Entry point (through function pointer) to C language function:
ALint alGetInteger(ALenum param);

Specified by:
alGetInteger in interface AL

alGetIntegerv

public void alGetIntegerv(int param,
                          IntBuffer values)
Entry point (through function pointer) to C language function:
void alGetIntegerv(ALenum param, ALint * values);

Specified by:
alGetIntegerv in interface AL
Parameters:
values - a direct or array-backed IntBuffer

alGetIntegerv

public void alGetIntegerv(int param,
                          int[] values,
                          int values_offset)
Entry point (through function pointer) to C language function:
void alGetIntegerv(ALenum param, ALint * values);

Specified by:
alGetIntegerv in interface AL

alGetListener3f

public void alGetListener3f(int param,
                            FloatBuffer value1,
                            FloatBuffer value2,
                            FloatBuffer value3)
Entry point (through function pointer) to C language function:
void alGetListener3f(ALenum param, ALfloat * value1, ALfloat * value2, ALfloat * value3);

Specified by:
alGetListener3f in interface AL
Parameters:
value1 - a direct or array-backed FloatBuffer
value2 - a direct or array-backed FloatBuffer
value3 - a direct or array-backed FloatBuffer

alGetListener3f

public void alGetListener3f(int param,
                            float[] value1,
                            int value1_offset,
                            float[] value2,
                            int value2_offset,
                            float[] value3,
                            int value3_offset)
Entry point (through function pointer) to C language function:
void alGetListener3f(ALenum param, ALfloat * value1, ALfloat * value2, ALfloat * value3);

Specified by:
alGetListener3f in interface AL

alGetListener3i

public void alGetListener3i(int param,
                            IntBuffer value1,
                            IntBuffer value2,
                            IntBuffer value3)
Entry point (through function pointer) to C language function:
void alGetListener3i(ALenum param, ALint * value1, ALint * value2, ALint * value3);

Specified by:
alGetListener3i in interface AL
Parameters:
value1 - a direct or array-backed IntBuffer
value2 - a direct or array-backed IntBuffer
value3 - a direct or array-backed IntBuffer

alGetListener3i

public void alGetListener3i(int param,
                            int[] value1,
                            int value1_offset,
                            int[] value2,
                            int value2_offset,
                            int[] value3,
                            int value3_offset)
Entry point (through function pointer) to C language function:
void alGetListener3i(ALenum param, ALint * value1, ALint * value2, ALint * value3);

Specified by:
alGetListener3i in interface AL

alGetListenerf

public void alGetListenerf(int param,
                           FloatBuffer value)
Entry point (through function pointer) to C language function:
void alGetListenerf(ALenum param, ALfloat * value);

Specified by:
alGetListenerf in interface AL
Parameters:
value - a direct or array-backed FloatBuffer

alGetListenerf

public void alGetListenerf(int param,
                           float[] value,
                           int value_offset)
Entry point (through function pointer) to C language function:
void alGetListenerf(ALenum param, ALfloat * value);

Specified by:
alGetListenerf in interface AL

alGetListenerfv

public void alGetListenerfv(int param,
                            FloatBuffer values)
Entry point (through function pointer) to C language function:
void alGetListenerfv(ALenum param, ALfloat * values);

Specified by:
alGetListenerfv in interface AL
Parameters:
values - a direct or array-backed FloatBuffer

alGetListenerfv

public void alGetListenerfv(int param,
                            float[] values,
                            int values_offset)
Entry point (through function pointer) to C language function:
void alGetListenerfv(ALenum param, ALfloat * values);

Specified by:
alGetListenerfv in interface AL

alGetListeneri

public void alGetListeneri(int param,
                           IntBuffer value)
Entry point (through function pointer) to C language function:
void alGetListeneri(ALenum param, ALint * value);

Specified by:
alGetListeneri in interface AL
Parameters:
value - a direct or array-backed IntBuffer

alGetListeneri

public void alGetListeneri(int param,
                           int[] value,
                           int value_offset)
Entry point (through function pointer) to C language function:
void alGetListeneri(ALenum param, ALint * value);

Specified by:
alGetListeneri in interface AL

alGetListeneriv

public void alGetListeneriv(int param,
                            IntBuffer values)
Entry point (through function pointer) to C language function:
void alGetListeneriv(ALenum param, ALint * values);

Specified by:
alGetListeneriv in interface AL
Parameters:
values - a direct or array-backed IntBuffer

alGetListeneriv

public void alGetListeneriv(int param,
                            int[] values,
                            int values_offset)
Entry point (through function pointer) to C language function:
void alGetListeneriv(ALenum param, ALint * values);

Specified by:
alGetListeneriv in interface AL

alGetSource3f

public void alGetSource3f(int source,
                          int param,
                          FloatBuffer value1,
                          FloatBuffer value2,
                          FloatBuffer value3)
Entry point (through function pointer) to C language function:
void alGetSource3f(ALuint source, ALenum param, ALfloat * value1, ALfloat * value2, ALfloat * value3);

Specified by:
alGetSource3f in interface AL
Parameters:
value1 - a direct or array-backed FloatBuffer
value2 - a direct or array-backed FloatBuffer
value3 - a direct or array-backed FloatBuffer

alGetSource3f

public void alGetSource3f(int source,
                          int param,
                          float[] value1,
                          int value1_offset,
                          float[] value2,
                          int value2_offset,
                          float[] value3,
                          int value3_offset)
Entry point (through function pointer) to C language function:
void alGetSource3f(ALuint source, ALenum param, ALfloat * value1, ALfloat * value2, ALfloat * value3);

Specified by:
alGetSource3f in interface AL

alGetSource3i

public void alGetSource3i(int source,
                          int param,
                          IntBuffer value1,
                          IntBuffer value2,
                          IntBuffer value3)
Entry point (through function pointer) to C language function:
void alGetSource3i(ALuint source, ALenum param, ALint * value1, ALint * value2, ALint * value3);

Specified by:
alGetSource3i in interface AL
Parameters:
value1 - a direct or array-backed IntBuffer
value2 - a direct or array-backed IntBuffer
value3 - a direct or array-backed IntBuffer

alGetSource3i

public void alGetSource3i(int source,
                          int param,
                          int[] value1,
                          int value1_offset,
                          int[] value2,
                          int value2_offset,
                          int[] value3,
                          int value3_offset)
Entry point (through function pointer) to C language function:
void alGetSource3i(ALuint source, ALenum param, ALint * value1, ALint * value2, ALint * value3);

Specified by:
alGetSource3i in interface AL

alGetSourcef

public void alGetSourcef(int source,
                         int param,
                         FloatBuffer value)
Entry point (through function pointer) to C language function:
void alGetSourcef(ALuint source, ALenum param, ALfloat * value);

Specified by:
alGetSourcef in interface AL
Parameters:
value - a direct or array-backed FloatBuffer

alGetSourcef

public void alGetSourcef(int source,
                         int param,
                         float[] value,
                         int value_offset)
Entry point (through function pointer) to C language function:
void alGetSourcef(ALuint source, ALenum param, ALfloat * value);

Specified by:
alGetSourcef in interface AL

alGetSourcefv

public void alGetSourcefv(int source,
                          int param,
                          FloatBuffer values)
Entry point (through function pointer) to C language function:
void alGetSourcefv(ALuint source, ALenum param, ALfloat * values);

Specified by:
alGetSourcefv in interface AL
Parameters:
values - a direct or array-backed FloatBuffer

alGetSourcefv

public void alGetSourcefv(int source,
                          int param,
                          float[] values,
                          int values_offset)
Entry point (through function pointer) to C language function:
void alGetSourcefv(ALuint source, ALenum param, ALfloat * values);

Specified by:
alGetSourcefv in interface AL

alGetSourcei

public void alGetSourcei(int source,
                         int param,
                         IntBuffer value)
Entry point (through function pointer) to C language function:
void alGetSourcei(ALuint source, ALenum param, ALint * value);

Specified by:
alGetSourcei in interface AL
Parameters:
value - a direct or array-backed IntBuffer

alGetSourcei

public void alGetSourcei(int source,
                         int param,
                         int[] value,
                         int value_offset)
Entry point (through function pointer) to C language function:
void alGetSourcei(ALuint source, ALenum param, ALint * value);

Specified by:
alGetSourcei in interface AL

alGetSourceiv

public void alGetSourceiv(int source,
                          int param,
                          IntBuffer values)
Entry point (through function pointer) to C language function:
void alGetSourceiv(ALuint source, ALenum param, ALint * values);

Specified by:
alGetSourceiv in interface AL
Parameters:
values - a direct or array-backed IntBuffer

alGetSourceiv

public void alGetSourceiv(int source,
                          int param,
                          int[] values,
                          int values_offset)
Entry point (through function pointer) to C language function:
void alGetSourceiv(ALuint source, ALenum param, ALint * values);

Specified by:
alGetSourceiv in interface AL

alGetString

public String alGetString(int param)
Entry point (through function pointer) to C language function:
const ALchar * alGetString(ALenum param);

Specified by:
alGetString in interface AL

alIsBuffer

public boolean alIsBuffer(int buffer)
Entry point (through function pointer) to C language function:
ALboolean alIsBuffer(ALuint buffer);

Specified by:
alIsBuffer in interface AL

alIsEnabled

public boolean alIsEnabled(int capability)
Entry point (through function pointer) to C language function:
ALboolean alIsEnabled(ALenum capability);

Specified by:
alIsEnabled in interface AL

alIsExtensionPresent

public boolean alIsExtensionPresent(String extname)
Entry point (through function pointer) to C language function:
ALboolean alIsExtensionPresent(const ALchar * extname);

Specified by:
alIsExtensionPresent in interface AL

alIsSource

public boolean alIsSource(int source)
Entry point (through function pointer) to C language function:
ALboolean alIsSource(ALuint source);

Specified by:
alIsSource in interface AL

alListener3f

public void alListener3f(int param,
                         float value1,
                         float value2,
                         float value3)
Entry point (through function pointer) to C language function:
void alListener3f(ALenum param, ALfloat value1, ALfloat value2, ALfloat value3);

Specified by:
alListener3f in interface AL

alListener3i

public void alListener3i(int param,
                         int value1,
                         int value2,
                         int value3)
Entry point (through function pointer) to C language function:
void alListener3i(ALenum param, ALint value1, ALint value2, ALint value3);

Specified by:
alListener3i in interface AL

alListenerf

public void alListenerf(int param,
                        float value)
Entry point (through function pointer) to C language function:
void alListenerf(ALenum param, ALfloat value);

Specified by:
alListenerf in interface AL

alListenerfv

public void alListenerfv(int param,
                         FloatBuffer values)
Entry point (through function pointer) to C language function:
void alListenerfv(ALenum param, const ALfloat * values);

Specified by:
alListenerfv in interface AL
Parameters:
values - a direct or array-backed FloatBuffer

alListenerfv

public void alListenerfv(int param,
                         float[] values,
                         int values_offset)
Entry point (through function pointer) to C language function:
void alListenerfv(ALenum param, const ALfloat * values);

Specified by:
alListenerfv in interface AL

alListeneri

public void alListeneri(int param,
                        int value)
Entry point (through function pointer) to C language function:
void alListeneri(ALenum param, ALint value);

Specified by:
alListeneri in interface AL

alListeneriv

public void alListeneriv(int param,
                         IntBuffer values)
Entry point (through function pointer) to C language function:
void alListeneriv(ALenum param, const ALint * values);

Specified by:
alListeneriv in interface AL
Parameters:
values - a direct or array-backed IntBuffer

alListeneriv

public void alListeneriv(int param,
                         int[] values,
                         int values_offset)
Entry point (through function pointer) to C language function:
void alListeneriv(ALenum param, const ALint * values);

Specified by:
alListeneriv in interface AL

alSource3f

public void alSource3f(int source,
                       int param,
                       float value1,
                       float value2,
                       float value3)
Entry point (through function pointer) to C language function:
void alSource3f(ALuint source, ALenum param, ALfloat value1, ALfloat value2, ALfloat value3);

Specified by:
alSource3f in interface AL

alSource3i

public void alSource3i(int source,
                       int param,
                       int value1,
                       int value2,
                       int value3)
Entry point (through function pointer) to C language function:
void alSource3i(ALuint source, ALenum param, ALint value1, ALint value2, ALint value3);

Specified by:
alSource3i in interface AL

alSourcePause

public void alSourcePause(int source)
Entry point (through function pointer) to C language function:
void alSourcePause(ALuint source);

Specified by:
alSourcePause in interface AL

alSourcePausev

public void alSourcePausev(int n,
                           IntBuffer sources)
Entry point (through function pointer) to C language function:
void alSourcePausev(ALsizei n, const ALuint * sources);

Specified by:
alSourcePausev in interface AL
Parameters:
sources - a direct or array-backed IntBuffer

alSourcePausev

public void alSourcePausev(int n,
                           int[] sources,
                           int sources_offset)
Entry point (through function pointer) to C language function:
void alSourcePausev(ALsizei n, const ALuint * sources);

Specified by:
alSourcePausev in interface AL

alSourcePlay

public void alSourcePlay(int source)
Entry point (through function pointer) to C language function:
void alSourcePlay(ALuint source);

Specified by:
alSourcePlay in interface AL

alSourcePlayv

public void alSourcePlayv(int n,
                          IntBuffer sources)
Entry point (through function pointer) to C language function:
void alSourcePlayv(ALsizei n, const ALuint * sources);

Specified by:
alSourcePlayv in interface AL
Parameters:
sources - a direct or array-backed IntBuffer

alSourcePlayv

public void alSourcePlayv(int n,
                          int[] sources,
                          int sources_offset)
Entry point (through function pointer) to C language function:
void alSourcePlayv(ALsizei n, const ALuint * sources);

Specified by:
alSourcePlayv in interface AL

alSourceQueueBuffers

public void alSourceQueueBuffers(int source,
                                 int nb,
                                 IntBuffer buffers)
Entry point (through function pointer) to C language function:
void alSourceQueueBuffers(ALuint source, ALsizei nb, const ALuint * buffers);

Specified by:
alSourceQueueBuffers in interface AL
Parameters:
buffers - a direct or array-backed IntBuffer

alSourceQueueBuffers

public void alSourceQueueBuffers(int source,
                                 int nb,
                                 int[] buffers,
                                 int buffers_offset)
Entry point (through function pointer) to C language function:
void alSourceQueueBuffers(ALuint source, ALsizei nb, const ALuint * buffers);

Specified by:
alSourceQueueBuffers in interface AL

alSourceRewind

public void alSourceRewind(int source)
Entry point (through function pointer) to C language function:
void alSourceRewind(ALuint source);

Specified by:
alSourceRewind in interface AL

alSourceRewindv

public void alSourceRewindv(int n,
                            IntBuffer sources)
Entry point (through function pointer) to C language function:
void alSourceRewindv(ALsizei n, const ALuint * sources);

Specified by:
alSourceRewindv in interface AL
Parameters:
sources - a direct or array-backed IntBuffer

alSourceRewindv

public void alSourceRewindv(int n,
                            int[] sources,
                            int sources_offset)
Entry point (through function pointer) to C language function:
void alSourceRewindv(ALsizei n, const ALuint * sources);

Specified by:
alSourceRewindv in interface AL

alSourceStop

public void alSourceStop(int source)
Entry point (through function pointer) to C language function:
void alSourceStop(ALuint source);

Specified by:
alSourceStop in interface AL

alSourceStopv

public void alSourceStopv(int n,
                          IntBuffer sources)
Entry point (through function pointer) to C language function:
void alSourceStopv(ALsizei n, const ALuint * sources);

Specified by:
alSourceStopv in interface AL
Parameters:
sources - a direct or array-backed IntBuffer

alSourceStopv

public void alSourceStopv(int n,
                          int[] sources,
                          int sources_offset)
Entry point (through function pointer) to C language function:
void alSourceStopv(ALsizei n, const ALuint * sources);

Specified by:
alSourceStopv in interface AL

alSourceUnqueueBuffers

public void alSourceUnqueueBuffers(int source,
                                   int nb,
                                   IntBuffer buffers)
Entry point (through function pointer) to C language function:
void alSourceUnqueueBuffers(ALuint source, ALsizei nb, ALuint * buffers);

Specified by:
alSourceUnqueueBuffers in interface AL
Parameters:
buffers - a direct or array-backed IntBuffer

alSourceUnqueueBuffers

public void alSourceUnqueueBuffers(int source,
                                   int nb,
                                   int[] buffers,
                                   int buffers_offset)
Entry point (through function pointer) to C language function:
void alSourceUnqueueBuffers(ALuint source, ALsizei nb, ALuint * buffers);

Specified by:
alSourceUnqueueBuffers in interface AL

alSourcef

public void alSourcef(int source,
                      int param,
                      float value)
Entry point (through function pointer) to C language function:
void alSourcef(ALuint source, ALenum param, ALfloat value);

Specified by:
alSourcef in interface AL

alSourcefv

public void alSourcefv(int source,
                       int param,
                       FloatBuffer values)
Entry point (through function pointer) to C language function:
void alSourcefv(ALuint source, ALenum param, const ALfloat * values);

Specified by:
alSourcefv in interface AL
Parameters:
values - a direct or array-backed FloatBuffer

alSourcefv

public void alSourcefv(int source,
                       int param,
                       float[] values,
                       int values_offset)
Entry point (through function pointer) to C language function:
void alSourcefv(ALuint source, ALenum param, const ALfloat * values);

Specified by:
alSourcefv in interface AL

alSourcei

public void alSourcei(int source,
                      int param,
                      int value)
Entry point (through function pointer) to C language function:
void alSourcei(ALuint source, ALenum param, ALint value);

Specified by:
alSourcei in interface AL

alSourceiv

public void alSourceiv(int source,
                       int param,
                       IntBuffer values)
Entry point (through function pointer) to C language function:
void alSourceiv(ALuint source, ALenum param, const ALint * values);

Specified by:
alSourceiv in interface AL
Parameters:
values - a direct or array-backed IntBuffer

alSourceiv

public void alSourceiv(int source,
                       int param,
                       int[] values,
                       int values_offset)
Entry point (through function pointer) to C language function:
void alSourceiv(ALuint source, ALenum param, const ALint * values);

Specified by:
alSourceiv in interface AL

alSpeedOfSound

public void alSpeedOfSound(float value)
Entry point (through function pointer) to C language function:
void alSpeedOfSound(ALfloat value);

Specified by:
alSpeedOfSound in interface AL

getALProcAddressTable

public static ALProcAddressTable getALProcAddressTable()