Avoid using deprecated methods.
This commit is contained in:
parent
5cc81e0449
commit
681e19f704
1 changed files with 1 additions and 1 deletions
|
@ -932,7 +932,7 @@ namespace OpenTK.Graphics.OpenGL
|
|||
|
||||
public static void TexEnv(TextureEnvTarget target, TextureEnvParameter pname, System.Drawing.Color color)
|
||||
{
|
||||
Color4 c = new Color4(color);
|
||||
Color4 c = new Color4(color.R, color.G, color.B, color.A);
|
||||
unsafe
|
||||
{
|
||||
TexEnv(target, pname, &c.R);
|
||||
|
|
Loading…
Reference in a new issue