//
// OpenGlProfile.cs
//
// Copyright (C) 2019 OpenTK
//
// This software may be modified and distributed under the terms
// of the MIT license. See the LICENSE file for details.
//
namespace OpenToolkit.GraphicsLibraryFramework
{
///
/// The OpenGL context profiles.
///
public enum OpenGlProfile
{
///
/// Used for unknown OpenGL profile or OpenGL ES.
///
Any = 0,
///
/// Known OpenGL Core profile.
///
Core = 0x00032001,
///
/// Known OpenGL compatibility profile.
///
Compat = 0x00032002
}
}