mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-20 05:56:33 +00:00
Fix GL.CreateBuffers -> GL.GenBuffers (#189)
This commit is contained in:
parent
09dfefed1f
commit
af5f059d4e
1 changed files with 2 additions and 2 deletions
|
@ -83,7 +83,7 @@ namespace Ryujinx.Graphics.Gal.OpenGL
|
||||||
{
|
{
|
||||||
Memory = new byte[MaxSize];
|
Memory = new byte[MaxSize];
|
||||||
|
|
||||||
GL.CreateBuffers(1, out int Handle);
|
GL.GenBuffers(1, out int Handle);
|
||||||
|
|
||||||
GL.BindBuffer(Target, Handle);
|
GL.BindBuffer(Target, Handle);
|
||||||
|
|
||||||
|
@ -110,4 +110,4 @@ namespace Ryujinx.Graphics.Gal.OpenGL
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue