Added missing documentation to OnResize.

This commit is contained in:
the_fiddler 2010-10-28 09:00:07 +00:00
parent d56478c5b2
commit c6f4b4206f

View file

@ -1006,6 +1006,15 @@ namespace OpenTK
#region OnResize
/// <summary>
/// Called when this window is resized.
/// </summary>
/// <param name="e">Not used.</param>
/// <remarks>
/// You will typically wish to update your viewport whenever
/// the window is resized. See the
/// <see cref="OpenTK.Graphics.OpenGL.GL.Viewport"/> method.
/// </remarks>
protected override void OnResize(EventArgs e)
{
base.OnResize(e);