Fixed incorrect self-assignment statements
This commit is contained in:
parent
30e42bb6dd
commit
6df11a8564
1 changed files with 3 additions and 3 deletions
|
@ -441,11 +441,11 @@ namespace OpenTK
|
|||
/// </summary>
|
||||
/// <param name="location">The top-left corner of the RectangleF.</param>
|
||||
/// <param name="SizeF">The width and height of the RectangleF.</param>
|
||||
public RectangleF(PointF location, SizeF SizeF)
|
||||
public RectangleF(PointF location, SizeF size)
|
||||
: this()
|
||||
{
|
||||
Location = location;
|
||||
SizeF = SizeF;
|
||||
Size = size;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -1611,7 +1611,7 @@ namespace OpenTK
|
|||
{
|
||||
Width = width;
|
||||
Height = height;
|
||||
stride = stride;
|
||||
Stride = stride;
|
||||
}
|
||||
|
||||
public IntPtr Scan0 { get { return IntPtr.Zero; } }
|
||||
|
|
Loading…
Reference in a new issue