mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 06:05:37 +00:00
15 lines
303 B
C#
15 lines
303 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 sealed partial class GL : BindingsBase
|
|
{
|
|
const string Library = "libGLESv2.dll";
|
|
}
|
|
}
|