Fix some VS debugger issues.
This commit is contained in:
parent
ce89a55acf
commit
6ccf4ca414
@ -77,7 +77,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region Constants
|
#region Constants
|
||||||
|
|
||||||
internal const string Lib = "openal32.dll";
|
internal const string Lib = "openal32.dll";
|
||||||
private const CallingConvention Style = CallingConvention.Cdecl;
|
internal const CallingConvention Style = CallingConvention.Cdecl;
|
||||||
|
|
||||||
#endregion Constants
|
#endregion Constants
|
||||||
|
|
||||||
@ -1122,7 +1122,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
/// <param name="sid">The name of the source to queue buffers onto.</param>
|
/// <param name="sid">The name of the source to queue buffers onto.</param>
|
||||||
/// <param name="numEntries">The number of buffers to be queued.</param>
|
/// <param name="numEntries">The number of buffers to be queued.</param>
|
||||||
/// <param name="bids">A pointer to an array of buffer names to be queued.</param>
|
/// <param name="bids">A pointer to an array of buffer names to be queued.</param>
|
||||||
[CLSCompliant(false), DllImport(AL.Lib, EntryPoint = "alSourceQueueBuffers"), SuppressUnmanagedCodeSecurity]
|
[CLSCompliant(false), DllImport(AL.Lib, EntryPoint = "alSourceQueueBuffers", CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity]
|
||||||
unsafe public static extern void SourceQueueBuffers(uint sid, int numEntries, [In] uint* bids);
|
unsafe public static extern void SourceQueueBuffers(uint sid, int numEntries, [In] uint* bids);
|
||||||
// AL_API void AL_APIENTRY alSourceQueueBuffers( ALuint sid, ALsizei numEntries, const ALuint *bids );
|
// AL_API void AL_APIENTRY alSourceQueueBuffers( ALuint sid, ALsizei numEntries, const ALuint *bids );
|
||||||
|
|
||||||
@ -1188,7 +1188,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
/// <param name="sid">The name of the source to unqueue buffers from.</param>
|
/// <param name="sid">The name of the source to unqueue buffers from.</param>
|
||||||
/// <param name="numEntries">The number of buffers to be unqueued.</param>
|
/// <param name="numEntries">The number of buffers to be unqueued.</param>
|
||||||
/// <param name="bids">A pointer to an array of buffer names that were removed.</param>
|
/// <param name="bids">A pointer to an array of buffer names that were removed.</param>
|
||||||
[CLSCompliant(false), DllImport(AL.Lib, EntryPoint = "alSourceUnqueueBuffers"), SuppressUnmanagedCodeSecurity]
|
[CLSCompliant(false), DllImport(AL.Lib, EntryPoint = "alSourceUnqueueBuffers", CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity]
|
||||||
unsafe public static extern void SourceUnqueueBuffers(uint sid, int numEntries, [In] uint* bids);
|
unsafe public static extern void SourceUnqueueBuffers(uint sid, int numEntries, [In] uint* bids);
|
||||||
// AL_API void AL_APIENTRY alSourceUnqueueBuffers( ALuint sid, ALsizei numEntries, ALuint *bids );
|
// AL_API void AL_APIENTRY alSourceUnqueueBuffers( ALuint sid, ALsizei numEntries, ALuint *bids );
|
||||||
|
|
||||||
@ -1197,14 +1197,14 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
/// <param name="numEntries">The number of buffers to be unqueued.</param>
|
/// <param name="numEntries">The number of buffers to be unqueued.</param>
|
||||||
/// <param name="bids">A pointer to an array of buffer names that were removed.</param>
|
/// <param name="bids">A pointer to an array of buffer names that were removed.</param>
|
||||||
[CLSCompliant(false)]
|
[CLSCompliant(false)]
|
||||||
[DllImport(AL.Lib, EntryPoint = "alSourceUnqueueBuffers"), SuppressUnmanagedCodeSecurity]
|
[DllImport(AL.Lib, EntryPoint = "alSourceUnqueueBuffers", CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity]
|
||||||
public static extern void SourceUnqueueBuffers(uint sid, int numEntries, [Out] uint[] bids);
|
public static extern void SourceUnqueueBuffers(uint sid, int numEntries, [Out] uint[] bids);
|
||||||
|
|
||||||
/// <summary>This function unqueues a set of buffers attached to a source. The number of processed buffers can be detected using AL.GetSource with parameter ALGetSourcei.BuffersProcessed, which is the maximum number of buffers that can be unqueued using this call. The unqueue operation will only take place if all n buffers can be removed from the queue.</summary>
|
/// <summary>This function unqueues a set of buffers attached to a source. The number of processed buffers can be detected using AL.GetSource with parameter ALGetSourcei.BuffersProcessed, which is the maximum number of buffers that can be unqueued using this call. The unqueue operation will only take place if all n buffers can be removed from the queue.</summary>
|
||||||
/// <param name="sid">The name of the source to unqueue buffers from.</param>
|
/// <param name="sid">The name of the source to unqueue buffers from.</param>
|
||||||
/// <param name="numEntries">The number of buffers to be unqueued.</param>
|
/// <param name="numEntries">The number of buffers to be unqueued.</param>
|
||||||
/// <param name="bids">A pointer to an array of buffer names that were removed.</param>
|
/// <param name="bids">A pointer to an array of buffer names that were removed.</param>
|
||||||
[DllImport(AL.Lib, EntryPoint = "alSourceUnqueueBuffers"), SuppressUnmanagedCodeSecurity]
|
[DllImport(AL.Lib, EntryPoint = "alSourceUnqueueBuffers", CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity]
|
||||||
public static extern void SourceUnqueueBuffers(int sid, int numEntries, [Out] int[] bids);
|
public static extern void SourceUnqueueBuffers(int sid, int numEntries, [Out] int[] bids);
|
||||||
|
|
||||||
/// <summary>This function unqueues a set of buffers attached to a source. The number of processed buffers can be detected using AL.GetSource with parameter ALGetSourcei.BuffersProcessed, which is the maximum number of buffers that can be unqueued using this call. The unqueue operation will only take place if all n buffers can be removed from the queue.</summary>
|
/// <summary>This function unqueues a set of buffers attached to a source. The number of processed buffers can be detected using AL.GetSource with parameter ALGetSourcei.BuffersProcessed, which is the maximum number of buffers that can be unqueued using this call. The unqueue operation will only take place if all n buffers can be removed from the queue.</summary>
|
||||||
@ -1212,14 +1212,14 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
/// <param name="numEntries">The number of buffers to be unqueued.</param>
|
/// <param name="numEntries">The number of buffers to be unqueued.</param>
|
||||||
/// <param name="bids">A pointer to an array of buffer names that were removed.</param>
|
/// <param name="bids">A pointer to an array of buffer names that were removed.</param>
|
||||||
[CLSCompliant(false)]
|
[CLSCompliant(false)]
|
||||||
[DllImport(AL.Lib, EntryPoint = "alSourceUnqueueBuffers"), SuppressUnmanagedCodeSecurity]
|
[DllImport(AL.Lib, EntryPoint = "alSourceUnqueueBuffers", CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity]
|
||||||
public static extern void SourceUnqueueBuffers(uint sid, int numEntries, ref uint bids);
|
public static extern void SourceUnqueueBuffers(uint sid, int numEntries, ref uint bids);
|
||||||
|
|
||||||
/// <summary>This function unqueues a set of buffers attached to a source. The number of processed buffers can be detected using AL.GetSource with parameter ALGetSourcei.BuffersProcessed, which is the maximum number of buffers that can be unqueued using this call. The unqueue operation will only take place if all n buffers can be removed from the queue.</summary>
|
/// <summary>This function unqueues a set of buffers attached to a source. The number of processed buffers can be detected using AL.GetSource with parameter ALGetSourcei.BuffersProcessed, which is the maximum number of buffers that can be unqueued using this call. The unqueue operation will only take place if all n buffers can be removed from the queue.</summary>
|
||||||
/// <param name="sid">The name of the source to unqueue buffers from.</param>
|
/// <param name="sid">The name of the source to unqueue buffers from.</param>
|
||||||
/// <param name="numEntries">The number of buffers to be unqueued.</param>
|
/// <param name="numEntries">The number of buffers to be unqueued.</param>
|
||||||
/// <param name="bids">A pointer to an array of buffer names that were removed.</param>
|
/// <param name="bids">A pointer to an array of buffer names that were removed.</param>
|
||||||
[DllImport(AL.Lib, EntryPoint = "alSourceUnqueueBuffers"), SuppressUnmanagedCodeSecurity]
|
[DllImport(AL.Lib, EntryPoint = "alSourceUnqueueBuffers", CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity]
|
||||||
public static extern void SourceUnqueueBuffers(int sid, int numEntries, ref int bids);
|
public static extern void SourceUnqueueBuffers(int sid, int numEntries, ref int bids);
|
||||||
|
|
||||||
/// <summary>This function unqueues a set of buffers attached to a source. The number of processed buffers can be detected using AL.GetSource with parameter ALGetSourcei.BuffersProcessed, which is the maximum number of buffers that can be unqueued using this call. The unqueue operation will only take place if all n buffers can be removed from the queue.</summary>
|
/// <summary>This function unqueues a set of buffers attached to a source. The number of processed buffers can be detected using AL.GetSource with parameter ALGetSourcei.BuffersProcessed, which is the maximum number of buffers that can be unqueued using this call. The unqueue operation will only take place if all n buffers can be removed from the queue.</summary>
|
||||||
|
@ -122,6 +122,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alGenEffects
|
#region alGenEffects
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
unsafe private delegate void Delegate_alGenEffects(int n, [Out] uint* effects);
|
unsafe private delegate void Delegate_alGenEffects(int n, [Out] uint* effects);
|
||||||
// typedef void (__cdecl *LPALGENEFFECTS)( ALsizei n, ALuint* effects );
|
// typedef void (__cdecl *LPALGENEFFECTS)( ALsizei n, ALuint* effects );
|
||||||
|
|
||||||
@ -209,6 +210,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alDeleteEffects
|
#region alDeleteEffects
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
unsafe private delegate void Delegate_alDeleteEffects(int n, [In] uint* effects);
|
unsafe private delegate void Delegate_alDeleteEffects(int n, [In] uint* effects);
|
||||||
// typedef void (__cdecl *LPALDELETEEFFECTS)( ALsizei n, ALuint* effects );
|
// typedef void (__cdecl *LPALDELETEEFFECTS)( ALsizei n, ALuint* effects );
|
||||||
|
|
||||||
@ -287,6 +289,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alIsEffect
|
#region alIsEffect
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
private delegate bool Delegate_alIsEffect(uint eid);
|
private delegate bool Delegate_alIsEffect(uint eid);
|
||||||
// typedef ALboolean (__cdecl *LPALISEFFECT)( ALuint eid );
|
// typedef ALboolean (__cdecl *LPALISEFFECT)( ALuint eid );
|
||||||
|
|
||||||
@ -316,6 +319,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alEffecti
|
#region alEffecti
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
private delegate void Delegate_alEffecti(uint eid, EfxEffecti param, int value);
|
private delegate void Delegate_alEffecti(uint eid, EfxEffecti param, int value);
|
||||||
// typedef void (__cdecl *LPALEFFECTI)( ALuint eid, ALenum param, ALint value);
|
// typedef void (__cdecl *LPALEFFECTI)( ALuint eid, ALenum param, ALint value);
|
||||||
|
|
||||||
@ -347,6 +351,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alEffectf
|
#region alEffectf
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
private delegate void Delegate_alEffectf(uint eid, EfxEffectf param, float value);
|
private delegate void Delegate_alEffectf(uint eid, EfxEffectf param, float value);
|
||||||
// typedef void (__cdecl *LPALEFFECTF)( ALuint eid, ALenum param, ALfloat value);
|
// typedef void (__cdecl *LPALEFFECTF)( ALuint eid, ALenum param, ALfloat value);
|
||||||
|
|
||||||
@ -378,6 +383,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alEffectfv
|
#region alEffectfv
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
unsafe private delegate void Delegate_alEffectfv(uint eid, EfxEffect3f param, [In] float* values);
|
unsafe private delegate void Delegate_alEffectfv(uint eid, EfxEffect3f param, [In] float* values);
|
||||||
// typedef void (__cdecl *LPALEFFECTFV)( ALuint eid, ALenum param, ALfloat* values );
|
// typedef void (__cdecl *LPALEFFECTFV)( ALuint eid, ALenum param, ALfloat* values );
|
||||||
|
|
||||||
@ -415,6 +421,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alGetEffecti
|
#region alGetEffecti
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
unsafe private delegate void Delegate_alGetEffecti(uint eid, EfxEffecti pname, [Out] int* value);
|
unsafe private delegate void Delegate_alGetEffecti(uint eid, EfxEffecti pname, [Out] int* value);
|
||||||
// typedef void (__cdecl *LPALGETEFFECTI)( ALuint eid, ALenum pname, ALint* value );
|
// typedef void (__cdecl *LPALGETEFFECTI)( ALuint eid, ALenum pname, ALint* value );
|
||||||
|
|
||||||
@ -452,6 +459,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alGetEffectf
|
#region alGetEffectf
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
unsafe private delegate void Delegate_alGetEffectf(uint eid, EfxEffectf pname, [Out]float* value);
|
unsafe private delegate void Delegate_alGetEffectf(uint eid, EfxEffectf pname, [Out]float* value);
|
||||||
// typedef void (__cdecl *LPALGETEFFECTF)( ALuint eid, ALenum pname, ALfloat* value );
|
// typedef void (__cdecl *LPALGETEFFECTF)( ALuint eid, ALenum pname, ALfloat* value );
|
||||||
|
|
||||||
@ -489,6 +497,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alGetEffectfv
|
#region alGetEffectfv
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
unsafe private delegate void Delegate_alGetEffectfv(uint eid, EfxEffect3f param, [Out] float* values);
|
unsafe private delegate void Delegate_alGetEffectfv(uint eid, EfxEffect3f param, [Out] float* values);
|
||||||
// typedef void (__cdecl *LPALGETEFFECTFV)( ALuint eid, ALenum pname, ALfloat* values );
|
// typedef void (__cdecl *LPALGETEFFECTFV)( ALuint eid, ALenum pname, ALfloat* values );
|
||||||
|
|
||||||
@ -537,6 +546,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alGenFilters
|
#region alGenFilters
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
unsafe private delegate void Delegate_alGenFilters(int n, [Out] uint* filters);
|
unsafe private delegate void Delegate_alGenFilters(int n, [Out] uint* filters);
|
||||||
// typedef void (__cdecl *LPALGENFILTERS)( ALsizei n, ALuint* filters );
|
// typedef void (__cdecl *LPALGENFILTERS)( ALsizei n, ALuint* filters );
|
||||||
|
|
||||||
@ -619,6 +629,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alDeleteFilters
|
#region alDeleteFilters
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
unsafe private delegate void Delegate_alDeleteFilters(int n, [In] uint* filters);
|
unsafe private delegate void Delegate_alDeleteFilters(int n, [In] uint* filters);
|
||||||
// typedef void (__cdecl *LPALDELETEFILTERS)( ALsizei n, ALuint* filters );
|
// typedef void (__cdecl *LPALDELETEFILTERS)( ALsizei n, ALuint* filters );
|
||||||
|
|
||||||
@ -697,6 +708,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alIsFilter
|
#region alIsFilter
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
private delegate bool Delegate_alIsFilter(uint fid);
|
private delegate bool Delegate_alIsFilter(uint fid);
|
||||||
// typedef ALboolean (__cdecl *LPALISFILTER)( ALuint fid );
|
// typedef ALboolean (__cdecl *LPALISFILTER)( ALuint fid );
|
||||||
|
|
||||||
@ -726,6 +738,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alFilteri
|
#region alFilteri
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
private delegate void Delegate_alFilteri(uint fid, EfxFilteri param, int value);
|
private delegate void Delegate_alFilteri(uint fid, EfxFilteri param, int value);
|
||||||
// typedef void (__cdecl *LPALFILTERI)( ALuint fid, ALenum param, ALint value );
|
// typedef void (__cdecl *LPALFILTERI)( ALuint fid, ALenum param, ALint value );
|
||||||
|
|
||||||
@ -757,6 +770,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alFilterf
|
#region alFilterf
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
private delegate void Delegate_alFilterf(uint fid, EfxFilterf param, float value);
|
private delegate void Delegate_alFilterf(uint fid, EfxFilterf param, float value);
|
||||||
// typedef void (__cdecl *LPALFILTERF)( ALuint fid, ALenum param, ALfloat value);
|
// typedef void (__cdecl *LPALFILTERF)( ALuint fid, ALenum param, ALfloat value);
|
||||||
|
|
||||||
@ -788,6 +802,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alGetFilteri
|
#region alGetFilteri
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
unsafe private delegate void Delegate_alGetFilteri(uint fid, EfxFilteri pname, [Out] int* value);
|
unsafe private delegate void Delegate_alGetFilteri(uint fid, EfxFilteri pname, [Out] int* value);
|
||||||
// typedef void (__cdecl *LPALGETFILTERI)( ALuint fid, ALenum pname, ALint* value );
|
// typedef void (__cdecl *LPALGETFILTERI)( ALuint fid, ALenum pname, ALint* value );
|
||||||
|
|
||||||
@ -825,6 +840,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alGetFilterf
|
#region alGetFilterf
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
unsafe private delegate void Delegate_alGetFilterf(uint fid, EfxFilterf pname, [Out] float* value);
|
unsafe private delegate void Delegate_alGetFilterf(uint fid, EfxFilterf pname, [Out] float* value);
|
||||||
// typedef void (__cdecl *LPALGETFILTERF)( ALuint fid, ALenum pname, ALfloat* value );
|
// typedef void (__cdecl *LPALGETFILTERF)( ALuint fid, ALenum pname, ALfloat* value );
|
||||||
|
|
||||||
@ -872,6 +888,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alGenAuxiliaryEffectSlots
|
#region alGenAuxiliaryEffectSlots
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
unsafe private delegate void Delegate_alGenAuxiliaryEffectSlots(int n, [Out] uint* slots);
|
unsafe private delegate void Delegate_alGenAuxiliaryEffectSlots(int n, [Out] uint* slots);
|
||||||
// typedef void (__cdecl *LPALGENAUXILIARYEFFECTSLOTS)( ALsizei n, ALuint* slots );
|
// typedef void (__cdecl *LPALGENAUXILIARYEFFECTSLOTS)( ALsizei n, ALuint* slots );
|
||||||
|
|
||||||
@ -951,6 +968,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
|
|
||||||
#region DeleteAuxiliaryEffectSlots
|
#region DeleteAuxiliaryEffectSlots
|
||||||
|
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
unsafe private delegate void Delegate_alDeleteAuxiliaryEffectSlots(int n, [In] uint* slots);
|
unsafe private delegate void Delegate_alDeleteAuxiliaryEffectSlots(int n, [In] uint* slots);
|
||||||
// typedef void (__cdecl *LPALDELETEAUXILIARYEFFECTSLOTS)( ALsizei n, ALuint* slots );
|
// typedef void (__cdecl *LPALDELETEAUXILIARYEFFECTSLOTS)( ALsizei n, ALuint* slots );
|
||||||
|
|
||||||
@ -1028,6 +1046,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alIsAuxiliaryEffectSlot
|
#region alIsAuxiliaryEffectSlot
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
private delegate bool Delegate_alIsAuxiliaryEffectSlot(uint slot);
|
private delegate bool Delegate_alIsAuxiliaryEffectSlot(uint slot);
|
||||||
// typedef ALboolean (__cdecl *LPALISAUXILIARYEFFECTSLOT)( ALuint slot );
|
// typedef ALboolean (__cdecl *LPALISAUXILIARYEFFECTSLOT)( ALuint slot );
|
||||||
|
|
||||||
@ -1057,6 +1076,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alAuxiliaryEffectSloti
|
#region alAuxiliaryEffectSloti
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
private delegate void Delegate_alAuxiliaryEffectSloti(uint asid, EfxAuxiliaryi param, int value);
|
private delegate void Delegate_alAuxiliaryEffectSloti(uint asid, EfxAuxiliaryi param, int value);
|
||||||
// typedef void (__cdecl *LPALAUXILIARYEFFECTSLOTI)( ALuint asid, ALenum param, ALint value );
|
// typedef void (__cdecl *LPALAUXILIARYEFFECTSLOTI)( ALuint asid, ALenum param, ALint value );
|
||||||
|
|
||||||
@ -1088,6 +1108,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alAuxiliaryEffectSlotf
|
#region alAuxiliaryEffectSlotf
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
private delegate void Delegate_alAuxiliaryEffectSlotf(uint asid, EfxAuxiliaryf param, float value);
|
private delegate void Delegate_alAuxiliaryEffectSlotf(uint asid, EfxAuxiliaryf param, float value);
|
||||||
// typedef void (__cdecl *LPALAUXILIARYEFFECTSLOTF)( ALuint asid, ALenum param, ALfloat value );
|
// typedef void (__cdecl *LPALAUXILIARYEFFECTSLOTF)( ALuint asid, ALenum param, ALfloat value );
|
||||||
|
|
||||||
@ -1119,6 +1140,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alGetAuxiliaryEffectSloti
|
#region alGetAuxiliaryEffectSloti
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
unsafe private delegate void Delegate_alGetAuxiliaryEffectSloti(uint asid, EfxAuxiliaryi pname, [Out] int* value);
|
unsafe private delegate void Delegate_alGetAuxiliaryEffectSloti(uint asid, EfxAuxiliaryi pname, [Out] int* value);
|
||||||
// typedef void (__cdecl *LPALGETAUXILIARYEFFECTSLOTI)( ALuint asid, ALenum pname, ALint* value );
|
// typedef void (__cdecl *LPALGETAUXILIARYEFFECTSLOTI)( ALuint asid, ALenum pname, ALint* value );
|
||||||
|
|
||||||
@ -1156,6 +1178,7 @@ namespace OpenTK.Audio.OpenAL
|
|||||||
#region alGetAuxiliaryEffectSlotf
|
#region alGetAuxiliaryEffectSlotf
|
||||||
|
|
||||||
//[CLSCompliant(false)]
|
//[CLSCompliant(false)]
|
||||||
|
[UnmanagedFunctionPointer(AL.Style)]
|
||||||
unsafe private delegate void Delegate_alGetAuxiliaryEffectSlotf(uint asid, EfxAuxiliaryf pname, [Out] float* value);
|
unsafe private delegate void Delegate_alGetAuxiliaryEffectSlotf(uint asid, EfxAuxiliaryf pname, [Out] float* value);
|
||||||
// typedef void (__cdecl *LPALGETAUXILIARYEFFECTSLOTF)( ALuint asid, ALenum pname, ALfloat* value );
|
// typedef void (__cdecl *LPALGETAUXILIARYEFFECTSLOTF)( ALuint asid, ALenum pname, ALfloat* value );
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user