mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-24 15:46:57 +00:00
Moved OpenGL bindings to OpenTK.Graphics.OpenGL from OpenTK.OpenGL.
Updated bindings with new FBO tokens.
This commit is contained in:
parent
8346df89b8
commit
dd91c09685
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
8773
Source/OpenTK/Graphics/OpenGL/GL/GLEnums.cs
Normal file
8773
Source/OpenTK/Graphics/OpenGL/GL/GLEnums.cs
Normal file
File diff suppressed because it is too large
Load diff
|
@ -17,13 +17,10 @@ using System.Diagnostics;
|
|||
using System.Reflection.Emit;
|
||||
|
||||
using OpenTK.Math;
|
||||
using OpenTK.OpenGL.Enums;
|
||||
|
||||
#endregion
|
||||
|
||||
[assembly: CLSCompliant(true)]
|
||||
|
||||
namespace OpenTK.OpenGL
|
||||
namespace OpenTK.Graphics.OpenGL
|
||||
{
|
||||
/// <summary>
|
||||
/// OpenGL binding for .NET, implementing OpenGL 2.1, plus extensions.
|
||||
|
@ -445,7 +442,7 @@ namespace OpenTK.OpenGL
|
|||
AvailableExtensions.Add("gl_version_2_1", true);
|
||||
}
|
||||
|
||||
string extension_string = GL.GetString(Enums.StringName.Extensions);
|
||||
string extension_string = GL.GetString(StringName.Extensions);
|
||||
if (String.IsNullOrEmpty(extension_string))
|
||||
return; // no extensions are available
|
||||
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue