mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-04 11:07:12 +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.
16 lines
603 B
C#
16 lines
603 B
C#
namespace OpenToolkit.GraphicsLibraryFramework
|
|
{
|
|
/// <summary>
|
|
/// Initialization hints are set before <see cref="GLFW.Init"/> and affect how the library behaves until termination.
|
|
/// Hints are set with <see cref="GLFW.InitHint(InitHintInt, int)"/>.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// While this enum has no members,
|
|
/// it can still be useful because it allows you to access the direct <c>glfwInitHint(int, int)</c> API.
|
|
/// In case a future version of GLFW adds an int-taking int hint and we don't handle it.
|
|
/// </remarks>
|
|
public enum InitHintInt
|
|
{
|
|
}
|
|
}
|