mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 03:35:33 +00:00
removed unused AL_XYZ_NULL.
This commit is contained in:
parent
981d176532
commit
bf5e9fe5bd
|
@ -307,16 +307,12 @@ namespace OpenTK.OpenAL.Enums
|
|||
|
||||
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>
|
||||
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>
|
||||
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
|
||||
{
|
||||
|
|
|
@ -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)
|
Loading…
Reference in a new issue