Added missing documentation to OnResize.
This commit is contained in:
parent
d56478c5b2
commit
c6f4b4206f
1 changed files with 9 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue