mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01: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.
24 lines
687 B
C#
24 lines
687 B
C#
namespace OpenToolkit.GraphicsLibraryFramework
|
|
{
|
|
/// <summary>
|
|
/// Window hints for the WindowHintString function.
|
|
/// </summary>
|
|
public enum WindowHintString
|
|
{
|
|
/// <summary>
|
|
/// Sets the frame name on Cocoa. On any other platform, this does nothing.
|
|
/// </summary>
|
|
CocoaFrameName = 0x00023002,
|
|
|
|
/// <summary>
|
|
/// Sets the class name on X11. On any other platform, this does nothing.
|
|
/// </summary>
|
|
X11ClassName = 0x00024001,
|
|
|
|
/// <summary>
|
|
/// Sets the instance name on X11. on any other platform, this does nothing.
|
|
/// </summary>
|
|
X11InstanceName = 0x00024002,
|
|
}
|
|
}
|