mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-24 23:41:06 +00:00
Removed obsolete constructor.
This commit is contained in:
parent
bac01afe00
commit
2d90e61fa5
|
@ -97,15 +97,6 @@ namespace OpenTK.Graphics
|
||||||
A = a / (float)Byte.MaxValue;
|
A = a / (float)Byte.MaxValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Constructs a new Color4 structure from the specified System.Drawing.Color.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="color">The System.Drawing.Color containing the component values.</param>
|
|
||||||
[Obsolete("Use new Color4(r, g, b, a) instead.")]
|
|
||||||
public Color4(Color color)
|
|
||||||
: this(color.R, color.G, color.B, color.A)
|
|
||||||
{ }
|
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Public Members
|
#region Public Members
|
||||||
|
|
Loading…
Reference in a new issue