removed unused AL_XYZ_NULL.

This commit is contained in:
chrisbrandtner 2008-01-19 16:06:47 +00:00
parent 43604a632c
commit d287a95e6c
2 changed files with 9 additions and 15 deletions

View file

@ -307,16 +307,12 @@ namespace OpenTK.OpenAL.Enums
public enum EfxAuxiliaryi : int public enum EfxAuxiliaryi : int
{ {
// Auxiliary Slot object definitions to be used with alAuxiliaryEffectSlot functions.
/// <summary>This property is used to attach an Effect object to the Auxiliary Effect Slot object. After the attachment, the Auxiliary Effect Slot object will contain the effect type and have the same effect parameters that were stored in the Effect object. Any Sources feeding the Auxiliary Effect Slot will immediate feed the new effect type and new effect parameters.</summary> /// <summary>This property is used to attach an Effect object to the Auxiliary Effect Slot object. After the attachment, the Auxiliary Effect Slot object will contain the effect type and have the same effect parameters that were stored in the Effect object. Any Sources feeding the Auxiliary Effect Slot will immediate feed the new effect type and new effect parameters.</summary>
EffectslotEffect = 0x0001, EffectslotEffect = 0x0001,
/// <summary>This property is used to enable or disable automatic send adjustments based on the physical positions of the sources and the listener. This property should be enabled when an application wishes to use a reverb effect to simulate the environment surrounding a listener or a collection of Sources. Range [False .. True] Default: True </summary> /// <summary>This property is used to enable or disable automatic send adjustments based on the physical positions of the sources and the listener. This property should be enabled when an application wishes to use a reverb effect to simulate the environment surrounding a listener or a collection of Sources. Range [False .. True] Default: True </summary>
EffectslotAuxiliarySendAuto = 0x0003, EffectslotAuxiliarySendAuto = 0x0003,
}
// Value to be used as an Auxiliary Slot ID to disable a source send..
// AL_EFFECTSLOT_NULL = 0x0000, // remove, seems not to belong here. it's a target, not a token
}
public enum EfxAuxiliaryf : int public enum EfxAuxiliaryf : int
{ {

View file

@ -1,6 +1,6 @@
Version History: Version History:
v0.1-0.7 Alpha v0.1 - 0.8
- Alut: The following functions are not bound/imported. Issue of undoing C malloc to prevent memory leaks. - Alut: The following functions are not bound/imported. Issue of undoing C malloc to prevent memory leaks.
"alutLoadMemoryFromFile, alutLoadMemoryFromFileImage, alutLoadMemoryHelloWorld, alutLoadMemoryWaveform" "alutLoadMemoryFromFile, alutLoadMemoryFromFileImage, alutLoadMemoryHelloWorld, alutLoadMemoryWaveform"
@ -30,20 +30,18 @@ Efx: Functions not imported:
- X-Ram Extension untested, as it requires special hardware. !verify parameters of GetBufferMode()! - X-Ram Extension untested, as it requires special hardware. !verify parameters of GetBufferMode()!
- functions with ushort, uint, ulong marked as not CLS compliant. - functions with ushort, uint, ulong marked as not CLS compliant.
v0.8 Alpha v0.9
-added Efx tokens to AL/Alc enums.
-All Efx Effect functions imported. Filter and Auxiliary missing public methods.
v0.9
-added docu -added docu
-added alEffectfv and alGetEffectfv -added alEffectfv and alGetEffectfv
-ported samples from SDK
Todo:
- EFX Extension
- Enums themselves require summaries (do EFX 1st)
Todo for beta:
- Identify: AL_FILTER_FIRST_PARAMETER, AL_FILTER_LAST_PARAMETER - Identify: AL_FILTER_FIRST_PARAMETER, AL_FILTER_LAST_PARAMETER
AL_EFFECT_FIRST_PARAMETER, AL_EFFECT_LAST_PARAMETER AL_EFFECT_FIRST_PARAMETER, AL_EFFECT_LAST_PARAMETER
- AL.BindBuffer helper function ala GL.BindBuffer? (Wraps AL.Source, better consistency) - AL.BindBuffer helper function ala GL.BindBuffer? (Wraps AL.Source, better consistency)
- change all "name" into "handle" to avoid confusion? - change all "name" into "handle" to avoid confusion?
Todo for final:
- Enums themselves require summaries (do after some more serious tests)