//
// WindowHintOpenGlProfile.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
{
///
/// Used to set the OpenGlProfile attribute.
///
///
public enum WindowHintOpenGlProfile
{
///
/// Indicates the OpenGL profile used by the context.
/// This is
/// or
/// if the context uses a known profile, or
/// if the OpenGL profile is unknown or the context is an OpenGL ES context.
/// Note that the returned profile may not match the profile bits of the context flags,
/// as GLFW will try other means of detecting the profile when no bits are set. TODO: enum for missing crefs
///
OpenGlProfile = 0x00022008,
}
}