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