#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, } }