From bf5e9fe5bd5300bd8f1756e0ea36b7e3fef0094d Mon Sep 17 00:00:00 2001 From: chrisbrandtner Date: Sat, 19 Jan 2008 16:06:47 +0000 Subject: [PATCH] removed unused AL_XYZ_NULL. --- Source/OpenTK/OpenAL/EfxTokens.cs | 6 +----- Source/OpenTK/OpenAL/History.txt | 18 ++++++++---------- 2 files changed, 9 insertions(+), 15 deletions(-) diff --git a/Source/OpenTK/OpenAL/EfxTokens.cs b/Source/OpenTK/OpenAL/EfxTokens.cs index ca217b4d..8454ddb6 100644 --- a/Source/OpenTK/OpenAL/EfxTokens.cs +++ b/Source/OpenTK/OpenAL/EfxTokens.cs @@ -307,16 +307,12 @@ namespace OpenTK.OpenAL.Enums public enum EfxAuxiliaryi : int { - // Auxiliary Slot object definitions to be used with alAuxiliaryEffectSlot functions. /// 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. EffectslotEffect = 0x0001, /// 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 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 { diff --git a/Source/OpenTK/OpenAL/History.txt b/Source/OpenTK/OpenAL/History.txt index 9bbafc09..d52aec68 100644 --- a/Source/OpenTK/OpenAL/History.txt +++ b/Source/OpenTK/OpenAL/History.txt @@ -1,6 +1,6 @@ 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. "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()! - functions with ushort, uint, ulong marked as not CLS compliant. -v0.8 --added Efx tokens to AL/Alc enums. --All Efx Effect functions imported. Filter and Auxiliary missing public methods. - -v0.9 +Alpha v0.9 -added docu -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 AL_EFFECT_FIRST_PARAMETER, AL_EFFECT_LAST_PARAMETER - - AL.BindBuffer helper function ala GL.BindBuffer? (Wraps AL.Source, better consistency) - change all "name" into "handle" to avoid confusion? + +Todo for final: +- Enums themselves require summaries (do after some more serious tests) \ No newline at end of file