//
// ReleaseBehavior.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 context release behaviors.
///
///
public enum ReleaseBehavior
{
///
/// Use the default release behavior of the platform.
///
Any = 0,
///
/// The pipeline will be flushed whenever the context is released from being the current one.
///
Flush = 0x00035001,
///
/// The pipeline will not be flushed on release.
///
None = 0x00035002
}
}