//
// WindowHintRobustness.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 context robustness attribute.
///
///
public enum WindowHintRobustness
{
///
/// Indicates the robustness strategy used by the context.
/// This is or
/// if the window's context supports robustness, or otherwise.
///
ContextRobustness = 0x00022005,
}
}