alcGetIntegerv() private method

private alcGetIntegerv ( IntPtr device, ALCEnum param, int size, int &data ) : void
device IntPtr
param ALCEnum
size int
data int
return void
Beispiel #1
0
        private int GetSamplesAvailable()
        {
            ThrowIfDisposed();

            int samples;

            OpenAL.alcGetIntegerv(this.Handle, ALCEnum.ALC_CAPTURE_SAMPLES, 4, out samples);
            OpenAL.ErrorCheck(this);
            return(samples);
        }