<?xml version="1.0"?>
<doc>
<assembly>
<name>OpenTK</name>
</assembly>
<members>
<member name="T:OpenTK.Properties.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:OpenTK.Properties.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:OpenTK.Properties.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="T:OpenTK.Audio.AudioContext">
<summary>
Provides methods to instantiate, use and destroy an audio context for playback.
Static methods are provided to list available devices known by the driver.
</summary>
</member>
<member name="M:OpenTK.Audio.AudioContext.#cctor">
\internal
<summary>
Runs before the actual class constructor, to load available devices.
</summary>
</member>
<member name="M:OpenTK.Audio.AudioContext.#ctor">
<summary>Constructs a new AudioContext, using the default audio device.</summary>
</member>
<member name="M:OpenTK.Audio.AudioContext.#ctor(System.String)">
<summary>
Constructs a new AudioContext instance.
</summary>
<param name="device">The device name that will host this instance.</param>
</member>
<member name="M:OpenTK.Audio.AudioContext.#ctor(System.String,System.Int32)">
<summary>Constructs a new AudioContext, using the specified audio device and device parameters.</summary>
<param name="device">The name of the audio device to use.</param>
<param name="freq">Frequency for mixing output buffer, in units of Hz. Pass 0 for driver default.</param>
<remarks>
Use AudioContext.AvailableDevices to obtain a list of all available audio devices.
devices.
</remarks>
</member>
<member name="M:OpenTK.Audio.AudioContext.#ctor(System.String,System.Int32,System.Int32)">
<summary>Constructs a new AudioContext, using the specified audio device and device parameters.</summary>
<param name="device">The name of the audio device to use.</param>
<param name="freq">Frequency for mixing output buffer, in units of Hz. Pass 0 for driver default.</param>
<param name="refresh">Refresh intervals, in units of Hz. Pass 0 for driver default.</param>
<remarks>
Use AudioContext.AvailableDevices to obtain a list of all available audio devices.
devices.
</remarks>
</member>
<member name="M:OpenTK.Audio.AudioContext.#ctor(System.String,System.Int32,System.Int32,System.Boolean)">
<summary>Constructs a new AudioContext, using the specified audio device and device parameters.</summary>
<param name="device">The name of the audio device to use.</param>
<param name="freq">Frequency for mixing output buffer, in units of Hz. Pass 0 for driver default.</param>
<param name="refresh">Refresh intervals, in units of Hz. Pass 0 for driver default.</param>
<param name="sync">Flag, indicating a synchronous context.</param>
<remarks>
Use AudioContext.AvailableDevices to obtain a list of all available audio devices.
devices.
</remarks>
</member>
<member name="M:OpenTK.Audio.AudioContext.#ctor(System.String,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>Creates the audio context using the specified device and device parameters.</summary>
<param name="device">The device descriptor obtained through AudioContext.AvailableDevices.</param>
<param name="freq">Frequency for mixing output buffer, in units of Hz. Pass 0 for driver default.</param>
<param name="refresh">Refresh intervals, in units of Hz. Pass 0 for driver default.</param>
<param name="sync">Flag, indicating a synchronous context.</param>
<param name="enableEfx">Indicates whether the EFX extension should be initialized, if present.</param>
<exception cref="T:System.ArgumentNullException">Occurs when the device string is invalid.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Occurs when a specified parameter is invalid.</exception>
<exception cref="T:OpenTK.Audio.AudioDeviceException">
Occurs when the specified device is not available, or is in use by another program.
</exception>
<exception cref="T:OpenTK.Audio.AudioContextException">
Occurs when an audio context could not be created with the specified parameters.
</exception>
<exception cref="T:System.NotSupportedException">
Occurs when an AudioContext already exists.</exception>
<remarks>
<para>For maximum compatibility, you are strongly recommended to use the default constructor.</para>
<para>Multiple AudioContexts are not supported at this point.</para>
<para>
The number of auxilliary EFX sends depends on the audio hardware and drivers. Most Realtek devices, as well
as the Creative SB Live!, support 1 auxilliary send. Creative's Audigy and X-Fi series support 4 sends.
Values higher than supported will be clamped by the driver.
</para>
</remarks>
</member>
<member name="M:OpenTK.Audio.AudioContext.#ctor(System.String,System.Int32,System.Int32,System.Boolean,System.Boolean,OpenTK.Audio.AudioContext.MaxAuxiliarySends)">
<summary>Creates the audio context using the specified device and device parameters.</summary>
<param name="device">The device descriptor obtained through AudioContext.AvailableDevices.</param>
<param name="freq">Frequency for mixing output buffer, in units of Hz. Pass 0 for driver default.</param>
<param name="refresh">Refresh intervals, in units of Hz. Pass 0 for driver default.</param>
<param name="sync">Flag, indicating a synchronous context.</param>
<param name="enableEfx">Indicates whether the EFX extension should be initialized, if present.</param>
<param name="efxMaxAuxSends">Requires EFX enabled. The number of desired Auxiliary Sends per source.</param>
<exception cref="T:System.ArgumentNullException">Occurs when the device string is invalid.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Occurs when a specified parameter is invalid.</exception>
<exception cref="T:OpenTK.Audio.AudioDeviceException">
Occurs when the specified device is not available, or is in use by another program.
</exception>
<exception cref="T:OpenTK.Audio.AudioContextException">
Occurs when an audio context could not be created with the specified parameters.
</exception>
<exception cref="T:System.NotSupportedException">
Occurs when an AudioContext already exists.</exception>
<remarks>
<para>For maximum compatibility, you are strongly recommended to use the default constructor.</para>
<para>Multiple AudioContexts are not supported at this point.</para>
<para>
The number of auxilliary EFX
- 1
- 2
- 3
- 4
- 5
- 6
前往页