Opentk/Source/OpenTK/Platform/Android/Enums.cs
2016-06-08 15:15:59 +09:00

19 lines
400 B
C#

#region --- License ---
/* Licensed under the MIT/X11 license.
* Copyright (c) 2011 Xamarin, Inc.
* Copyright 2013 Xamarin Inc
* This notice may not be removed from any source distribution.
* See license.txt for licensing detailed licensing details.
*/
#endregion
using System;
namespace OpenTK.Graphics {
public enum GLVersion {
ES1 = 1,
ES2 = 2,
ES3 = 3,
}
}