mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-05-23 09:12:06 +00:00
19 lines
400 B
C#
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,
|
|
}
|
|
}
|