mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 19:15:33 +00:00
1832f6cef8
Moved ES bindings from GLES[10|11|20] namespaces to ES[10|11|20]. Renamed ES wrapper classes to 'ES' instead of 'GL'.
15 lines
300 B
C#
15 lines
300 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Graphics.ES10
|
|
{
|
|
/// <summary>
|
|
/// Provides access to OpenGL ES 1.0 methods.
|
|
/// </summary>
|
|
public static partial class ES
|
|
{
|
|
const string Library = "libGLES.dll";
|
|
}
|
|
}
|