Fixed a few warnings with XML comments
This commit is contained in:
parent
afefc93fc6
commit
f0a9afacce
5 changed files with 6 additions and 6 deletions
|
@ -322,9 +322,9 @@ namespace OpenTK
|
|||
#region GetDisplay
|
||||
|
||||
/// <summary>
|
||||
/// Gets the <see cref="DisplayDevice"/> for the specified <see cref="DeviceIndex"/>.
|
||||
/// Gets the <see cref="DisplayDevice"/> for the specified <see cref="DisplayIndex"/>.
|
||||
/// </summary>
|
||||
/// <param name="index">The <see cref="DeviceIndex"/> that defines the desired display.</param>
|
||||
/// <param name="index">The <see cref="DisplayIndex"/> that defines the desired display.</param>
|
||||
/// <returns>A <see cref="DisplayDevice"/> or null, if no device corresponds to the specified index.</returns>
|
||||
public static DisplayDevice GetDisplay(DisplayIndex index)
|
||||
{
|
||||
|
|
|
@ -410,7 +410,7 @@ namespace OpenTK
|
|||
/// <param name="x">Scale factor for the x axis.</param>
|
||||
/// <param name="y">Scale factor for the y axis.</param>
|
||||
/// <param name="z">Scale factor for the z axis.</param>
|
||||
/// <param name="result">A scale matrix.</returns>
|
||||
/// <param name="result">A scale matrix.</param>
|
||||
public static void CreateScale(float x, float y, float z, out Matrix3 result)
|
||||
{
|
||||
result = Identity;
|
||||
|
|
|
@ -410,7 +410,7 @@ namespace OpenTK
|
|||
/// <param name="x">Scale factor for the x axis.</param>
|
||||
/// <param name="y">Scale factor for the y axis.</param>
|
||||
/// <param name="z">Scale factor for the z axis.</param>
|
||||
/// <param name="result">A scale matrix.</returns>
|
||||
/// <param name="result">A scale matrix.</param>
|
||||
public static void CreateScale(double x, double y, double z, out Matrix3d result)
|
||||
{
|
||||
result = Identity;
|
||||
|
|
|
@ -613,7 +613,7 @@ namespace OpenTK
|
|||
/// <param name="x">Scale factor for the x axis.</param>
|
||||
/// <param name="y">Scale factor for the y axis.</param>
|
||||
/// <param name="z">Scale factor for the z axis.</param>
|
||||
/// <param name="result">A scale matrix.</returns>
|
||||
/// <param name="result">A scale matrix.</param>
|
||||
public static void CreateScale(float x, float y, float z, out Matrix4 result)
|
||||
{
|
||||
result = Identity;
|
||||
|
|
|
@ -821,7 +821,7 @@ namespace OpenTK
|
|||
/// <summary>
|
||||
/// Called when a keybord key is released.
|
||||
/// </summary>
|
||||
/// <param name="e">The <see cref="OpenTK.KeyboardKeyEventArgs"/> for this event.</param>
|
||||
/// <param name="e">The <see cref="OpenTK.Input.KeyboardKeyEventArgs"/> for this event.</param>
|
||||
protected virtual void OnKeyUp(KeyboardKeyEventArgs e)
|
||||
{
|
||||
KeyUp(this, e);
|
||||
|
|
Loading…
Reference in a new issue