Added missing XML comment to AL class.

Made AL.Lib internal.
This commit is contained in:
the_fiddler 2009-06-28 10:38:56 +00:00
parent c43407e77e
commit 51d39fffe1
2 changed files with 12 additions and 3 deletions

View file

@ -5,10 +5,17 @@
------------------------- -------------------------
+ OpenTK + OpenTK
+ Enabled documentation generation in debug builds. + Enabled documentation generation in debug builds.
+ Added several missing XML comments to OpenTK.Input, OpenTK.Audio, OpenTK.Math and other namespaces.
+ Audio
+ AL.Lib is now internal, not public.
+ Compute + Compute
+ Bitfields are now mapped to 'long' instead of 'int'. + Bitfields are now mapped to 'long' instead of 'int'.
+ GLControl + GLControl
+ Removed unused code. + Removed unused code.
+ Input
+ Added Mouse and Keyboard stubs for the new input API.
+ Added common alternative names to OpenTK.Input.Key (e.g. LControl, RControl, ...)
+ Removed None and MaxKeys tokens from OpenTK.Input.Key. Adde Unknown token.
+ Math + Math
+ Namespace OpenTK.Math no longer exists. Math functions are now placed directly inside the OpenTK namespace. + Namespace OpenTK.Math no longer exists. Math functions are now placed directly inside the OpenTK namespace.
+ Matrix4.Frustum was obsoleted in favor of Matrix4.CreatePerspectiveOffCenter. + Matrix4.Frustum was obsoleted in favor of Matrix4.CreatePerspectiveOffCenter.

View file

@ -64,13 +64,15 @@ typedef void ALvoid;
namespace OpenTK.Audio namespace OpenTK.Audio
{ {
/// <summary>
/// Provides access to the OpenAL flat API.
/// </summary>
public static partial class AL public static partial class AL
{ {
#region Constants #region Constants
public const string Lib = "openal32.dll"; internal const string Lib = "openal32.dll";
private const CallingConvention Style = CallingConvention.Cdecl; const CallingConvention Style = CallingConvention.Cdecl;
#endregion Constants #endregion Constants