mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-01-09 00:15:36 +00:00
AL_LOOP_POINTS_SOFT
This commit is contained in:
parent
1ffb95fa74
commit
ac4ac4d299
|
@ -1494,7 +1494,6 @@ namespace OpenTK.Audio.OpenAL
|
|||
// AL_API void AL_APIENTRY alBufferfv( ALuint bid, ALenum param, const ALfloat* values );
|
||||
// AL_API void AL_APIENTRY alBufferi( ALuint bid, ALenum param, ALint value );
|
||||
// AL_API void AL_APIENTRY alBuffer3i( ALuint bid, ALenum param, ALint value1, ALint value2, ALint value3 );
|
||||
// AL_API void AL_APIENTRY alBufferiv( ALuint bid, ALenum param, const ALint* values );
|
||||
// AL_API void AL_APIENTRY alBuffer3f( ALuint bid, ALenum param, ALfloat value1, ALfloat value2, ALfloat value3 );
|
||||
*/
|
||||
|
||||
|
@ -1507,6 +1506,9 @@ namespace OpenTK.Audio.OpenAL
|
|||
Buffer3f( bid, param, values.X, values.Y, values.Z );
|
||||
}*/
|
||||
|
||||
[CLSCompliant(false), DllImport(AL.Lib, EntryPoint = "alBufferiv", ExactSpelling = true, CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity()]
|
||||
public static extern void Buffer(int bid, ALBufferiv param, uint[] param);
|
||||
|
||||
#endregion Set Buffer parameters
|
||||
|
||||
#region Get Buffer parameters
|
||||
|
|
|
@ -46,6 +46,12 @@ namespace OpenTK.Audio.OpenAL
|
|||
Orientation = 0x100F,
|
||||
}
|
||||
|
||||
//<summary>A list of valid Integer Vector Buffer/GetBuffer parameters</summary>
|
||||
public enum ALBufferiv : int
|
||||
{
|
||||
LoopPointsSoft = 0x2015,
|
||||
}
|
||||
|
||||
///<summary>A list of valid 32-bit Float Source/GetSource parameters</summary>
|
||||
public enum ALSourcef : int
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue