mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 06:25:29 +00:00
7001076f5a
Added SoundReader class. Added OpenTK.Math.Functions.NextPowerOfTwo Fixed several AL functions, and added overloads to AL.BufferData. Added OpenAL wave playback sample.
17 lines
614 B
C#
17 lines
614 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Audio
|
|
{
|
|
/// <summary>Represents exceptions related to the OpenTK.Audio subsystem.</summary>
|
|
public class AudioException : Exception
|
|
{
|
|
/// <summary>Constructs a new AudioException.</summary>
|
|
public AudioException() : base() { }
|
|
/// <summary>Constructs a new AudioException with the specified error message.</summary>
|
|
/// <param name="message">The error message of the AudioException.</param>
|
|
public AudioException(string message) : base(message) { }
|
|
}
|
|
}
|