7001076f5a
Added SoundReader class. Added OpenTK.Math.Functions.NextPowerOfTwo Fixed several AL functions, and added overloads to AL.BufferData. Added OpenAL wave playback sample.
16 lines
661 B
C#
16 lines
661 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Audio
|
|
{
|
|
/// <summary>Represents exceptions related to OpenTK.Audio.SoundReader objects.</summary>
|
|
public class SoundReaderException : AudioException
|
|
{
|
|
/// <summary>Constructs a new SoundReaderException.</summary>
|
|
public SoundReaderException() : base() { }
|
|
/// <summary>Constructs a new SoundReaderException with the specified error message.</summary>
|
|
/// <param name="message">The error message of the SoundReaderException.</param>
|
|
public SoundReaderException(string message) : base(message) { }
|
|
}
|
|
}
|