mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-28 12:35:34 +00:00
2747869a92
Made the OpenGL and OpenGL|ES bindings non static. Made the OpenGL and OpenGL|ES bindings inherit from BindingsBase.
15 lines
317 B
C#
15 lines
317 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Graphics.ES20
|
|
{
|
|
/// <summary>
|
|
/// Provides access to OpenGL ES 2.0 methods.
|
|
/// </summary>
|
|
public sealed partial class GL : BindingsBase
|
|
{
|
|
const string Library = "libGLESv2.dll";
|
|
}
|
|
}
|