From 593d7460dd93888b466d24356050f02d8e25145a Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 5 Nov 2006 13:08:15 +0000 Subject: [PATCH] Build system updates. --- Source/Framework/Framework.cs | 1 - Source/OpenGL/OpenGL/DisplayList.cs | 26 +++++++++++++------------- changelog.txt | 1 + prebuild.xml | 7 +++++++ 4 files changed, 21 insertions(+), 14 deletions(-) diff --git a/Source/Framework/Framework.cs b/Source/Framework/Framework.cs index 6a9f8404..f53592d6 100644 --- a/Source/Framework/Framework.cs +++ b/Source/Framework/Framework.cs @@ -437,7 +437,6 @@ namespace OpenTK #endregion } - #region Old Code /* diff --git a/Source/OpenGL/OpenGL/DisplayList.cs b/Source/OpenGL/OpenGL/DisplayList.cs index 7ff7c375..052dc1c9 100644 --- a/Source/OpenGL/OpenGL/DisplayList.cs +++ b/Source/OpenGL/OpenGL/DisplayList.cs @@ -21,6 +21,18 @@ namespace OpenTK.OpenGL #endregion + #region --- Constructors --- + + /// + /// Allocates a new DisplayList. + /// + public DisplayList() + { + Id = GL.GenLists(1); + } + + #endregion + #region --- Public properties --- /// @@ -34,19 +46,7 @@ namespace OpenTK.OpenGL #endregion - #region --- Constructors --- - - /// - /// Allocates a new DisplayList. - /// - public DisplayList() - { - Id = GL.GenLists(1); - } - - #endregion - - #region --- Public functions --- + #region --- Public methods --- /// /// Starts recording elements into the display list. diff --git a/changelog.txt b/changelog.txt index ef652289..7fe4432d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,5 @@ OpenTK 0.3.5 -> 0.3.6 ++ Updated the build system to include txt files in the project generation. + OpenTK.OpenGL (High level) + Added the DisplayList class. + OpenTK.Examples.OpenGL diff --git a/prebuild.xml b/prebuild.xml index 15e666c1..b022b813 100644 --- a/prebuild.xml +++ b/prebuild.xml @@ -21,6 +21,13 @@ + + .\Todo.txt + .\Release.txt + .\Changelog.txt + .\License.txt + +