//
// Robustness.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
{
///
/// OpenGL context robustness strategy.
///
public enum Robustness
{
///
/// No context robustness strategy.
///
NoRobustness = 0,
///
/// Robust context without a reset notification.
///
NoResetNotification = 0x00031001,
///
/// Lose context on reset.
///
LoseContextOnReset = 0x00031002
}
}