mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-28 15:15:37 +00:00
15 lines
302 B
C#
15 lines
302 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace OpenTK.Graphics.GLES11
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Provides access to OpenGL ES 1.1 methods.
|
|||
|
/// </summary>
|
|||
|
public static partial class GL
|
|||
|
{
|
|||
|
const string Library = "libGLES.dll";
|
|||
|
}
|
|||
|
}
|