glfw-ext
Utilities and extension methods for glfw.
The version of glfw-ext follows the version of glfw.
Center window on the dominant monitor.
use WindowExt;
// Center the window on the dominant monitor, i.e. if
// the window is 20% on monitor A and 80% on monitor B,
// then the window is centered onto monitor B
wnd.try_center;
Center window on primary monitor:
use WindowExt;
// Center the window on the primary monitor
glfw.with_primary_monitor;
See examples/center_window.rs for a complete example.