[Graphics] Added missing documentation comment

This commit is contained in:
thefiddler 2014-01-03 02:18:28 +01:00
parent 0b8db7c40b
commit 514390fc9a

View file

@ -644,6 +644,11 @@ namespace OpenTK.Graphics
}
}
/// <summary>
/// Marks this context as deleted, but does not actually release unmanaged resources
/// due to the threading requirements of OpenGL. Use <see cref="GraphicsContext.Dispose"/>
/// instead.
/// </summary>
~GraphicsContext()
{
Dispose(false);