Tao.OpenAl SDK Documentation

Al.alDeleteSources Method (Int32, IntPtr)

Deletes one or more sources.

[Visual Basic]
Overloads Public Shared Sub alDeleteSources( _
   ByVal number As Integer, _
   ByVal sources As IntPtr _
)
[C#]
public static void alDeleteSources(
   int number,
   IntPtr sources
);

Parameters

number
The number of sources to be deleted.
sources
Pointer to an array of source names identifying the sources to be deleted.

Remarks

If the requested number of sources cannot be deleted, an error will be generated which can be detected with alGetError. If an error occurs, no sources will be deleted. If number equals zero, alDeleteSources does nothing and will not return an error.

See Also

Al Class | Tao.OpenAl Namespace | Al.alDeleteSources Overload List