mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 06:55:37 +00:00
Build system updates.
This commit is contained in:
parent
22f6a0533c
commit
593d7460dd
|
@ -437,7 +437,6 @@ namespace OpenTK
|
|||
#endregion
|
||||
}
|
||||
|
||||
|
||||
#region Old Code
|
||||
|
||||
/*
|
||||
|
|
|
@ -21,6 +21,18 @@ namespace OpenTK.OpenGL
|
|||
|
||||
#endregion
|
||||
|
||||
#region --- Constructors ---
|
||||
|
||||
/// <summary>
|
||||
/// Allocates a new DisplayList.
|
||||
/// </summary>
|
||||
public DisplayList()
|
||||
{
|
||||
Id = GL.GenLists(1);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region --- Public properties ---
|
||||
|
||||
/// <summary>
|
||||
|
@ -34,19 +46,7 @@ namespace OpenTK.OpenGL
|
|||
|
||||
#endregion
|
||||
|
||||
#region --- Constructors ---
|
||||
|
||||
/// <summary>
|
||||
/// Allocates a new DisplayList.
|
||||
/// </summary>
|
||||
public DisplayList()
|
||||
{
|
||||
Id = GL.GenLists(1);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region --- Public functions ---
|
||||
#region --- Public methods ---
|
||||
|
||||
/// <summary>
|
||||
/// Starts recording elements into the display list.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -21,6 +21,13 @@
|
|||
</Options>
|
||||
</Configuration>
|
||||
|
||||
<Files>
|
||||
<File>.\Todo.txt</File>
|
||||
<File>.\Release.txt</File>
|
||||
<File>.\Changelog.txt</File>
|
||||
<File>.\License.txt</File>
|
||||
</Files>
|
||||
|
||||
<Project name="OpenTK.Platform.Windows" path=".\Source\Platform\Windows" language="C#" type="Library">
|
||||
|
||||
<Configuration name="Debug">
|
||||
|
|
Loading…
Reference in a new issue