mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 03:15:40 +00:00
e4f1c956c9
ES bindings now exist in ES10.GL, ES11.GL and ES20.GL classes instead of ES10.ES etc (reason: easier porting to/from regular OpenGL).
15 lines
302 B
C#
15 lines
302 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 static partial class GL
|
|
{
|
|
const string Library = "libGLESv2.dll";
|
|
}
|
|
}
|