You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
namespaceSilk.NET.GLFW{/// <summary>/// Key modifiers, such as Shift or CTRL./// </summary>publicenumKeyModifiers{/// <summary>/// if one or more Shift keys were held down./// </summary>Shift=0x0001,/// <summary>/// If one or more Control keys were held down./// </summary>Control=0x0002,/// <summary>/// If one or more Alt keys were held down./// </summary>Alt=0x0004,/// <summary>/// If one or more Super keys were held down./// </summary>Super=0x0008}}
Summary of feature
I have found something that Silk.NET does not implement for GLFW.
https://www.glfw.org/docs/3.3/group__mods.html
and possibly this function:
https://www.glfw.org/docs/3.3/group__input.html#gaa92336e173da9c8834558b54ee80563b
tested on Silk.NET 2.22.0 GLFW 3.4.0
specifically the ones that are missing are:
what Silk.NET has:
Comments
Related issue on GLFW:
glfw/glfw#946
Does this have a proposal?
no
The text was updated successfully, but these errors were encountered: