mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-29 06:55:28 +00:00
57c430fc36
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";
|
|
}
|
|
}
|