//
// WindowHintReleaseBehavior.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 specify the release behavior used by the local context.
///
///
public enum WindowHintReleaseBehavior
{
///
/// Specifies the release behavior to be used by the context.
/// Possible values are one of ,
/// or .
/// If the behavior is , the default behavior
/// of the context creation API will be used.
/// If the behavior is , the pipeline will be flushed
/// whenever the context is released from being the current one.
/// If the behavior is , the pipeline will not be flushed on release.
///
ContextReleaseBehavior = 0x00022009,
}
}