mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-07-07 10:50:34 +00:00
Updated to work with the new bindings.
This commit is contained in:
parent
3727da3a91
commit
e0c804a456
|
@ -13,6 +13,7 @@ using OpenTK.Platform;
|
||||||
using OpenTK.Input;
|
using OpenTK.Input;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using OpenTK.OpenGL;
|
using OpenTK.OpenGL;
|
||||||
|
using OpenTK.OpenGL.Enums;
|
||||||
|
|
||||||
namespace OpenTK
|
namespace OpenTK
|
||||||
{
|
{
|
||||||
|
@ -721,9 +722,9 @@ namespace OpenTK
|
||||||
}
|
}
|
||||||
|
|
||||||
Debug.WriteLine(String.Format("OpenGL driver information: {0}, {1}, {2}",
|
Debug.WriteLine(String.Format("OpenGL driver information: {0}, {1}, {2}",
|
||||||
GL.GetString(GL.Enums.StringName.RENDERER),
|
GL.GetString(StringName.Renderer),
|
||||||
GL.GetString(GL.Enums.StringName.VENDOR),
|
GL.GetString(StringName.Vendor),
|
||||||
GL.GetString(GL.Enums.StringName.VERSION)));
|
GL.GetString(StringName.Version)));
|
||||||
|
|
||||||
if (this.Load != null)
|
if (this.Load != null)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue