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
Set_Cursor_Mode is implemented in Glfw.Windows but not Get_Cursor_Mode although Get_Input_Mode does appear in glfw-api.
I have now implemented Get_Cursor_Mode in my wave_example branch as:
function Get_Cursor_Mode (Object : not null access Window)
return Input.Mouse.Cursor_Mode is
begin
return API.Get_Input_Mode (Object.Handle, Enums.Mouse_Cursor);
end Get_Cursor_Mode;
The text was updated successfully, but these errors were encountered:
Set_Cursor_Mode is implemented in Glfw.Windows but not Get_Cursor_Mode although Get_Input_Mode does appear in glfw-api.
I have now implemented Get_Cursor_Mode in my wave_example branch as:
The text was updated successfully, but these errors were encountered: