mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 20:55:38 +00:00
17 lines
364 B
C#
17 lines
364 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace OpenTK.Graphics.ES11
|
|
{
|
|
/// <summary>
|
|
/// Provides access to OpenGL ES 1.1 methods.
|
|
/// </summary>
|
|
public sealed partial class GL : BindingsBase
|
|
{
|
|
const string Library = "libGLES.dll";
|
|
}
|
|
}
|