Marked as obsolete. Use direct OpenGL methods instead.
This commit is contained in:
parent
21efddea04
commit
d8514e8650
1 changed files with 4 additions and 3 deletions
|
@ -13,6 +13,7 @@ namespace OpenTK.OpenGL
|
|||
/// <summary>
|
||||
/// Provides methods to create and render a display list.
|
||||
/// </summary>
|
||||
[Obsolete("Use OpenGL methods directly, instead.")]
|
||||
public class DisplayList : IDisposable
|
||||
{
|
||||
#region --- Private variables ---
|
||||
|
@ -81,7 +82,9 @@ namespace OpenTK.OpenGL
|
|||
GL.CallList(Id);
|
||||
}
|
||||
|
||||
#region IDisposable Members
|
||||
#endregion
|
||||
|
||||
#region --- IDisposable Members ---
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
|
@ -91,7 +94,5 @@ namespace OpenTK.OpenGL
|
|||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue