mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-07 02:08:17 +02:00
* Use GLFW instead of OpenTK windows * Seems to work pretty well now. * Fix stackalloc issue on Framework. * Add GLFW project to sln. * Fix package downgrade. * Fix SLN more. * Please work. * Fix C# version error.
26 lines
826 B
C#
26 lines
826 B
C#
//
|
|
// 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
|
|
{
|
|
/// <summary>
|
|
/// Used to set context robustness attribute.
|
|
/// </summary>
|
|
/// <seealso cref="GLFW.WindowHint(WindowHintRobustness,Robustness)"/>
|
|
public enum WindowHintRobustness
|
|
{
|
|
/// <summary>
|
|
/// Indicates the robustness strategy used by the context.
|
|
/// This is <see cref="Robustness.LoseContextOnReset"/> or <see cref="Robustness.NoResetNotification"/>
|
|
/// if the window's context supports robustness, or <see cref="Robustness.NoRobustness"/> otherwise.
|
|
/// </summary>
|
|
ContextRobustness = 0x00022005,
|
|
}
|
|
}
|