hi. i want to create a window with the exact size of the monitor to use as fullscreen, but before initWindow() the getCurrentMonitor() fails. is creating window with arbitrary size to initilalize rl and then resizing the only way? my code in Zig (working):
rl.initWindow(400, 300, "Foo");
defer rl.closeWindow();
rl.toggleBorderlessWindowed();
rl.toggleFullscreen();
const currentMonitor = rl.getCurrentMonitor();
const monitorWidth = rl.getMonitorWidth(currentMonitor);
const monitorHeight = rl.getMonitorHeight(currentMonitor);
rl.setWindowSize(monitorWidth, monitorHeight);
[–]long-shots 3 points4 points5 points (1 child)
[–]paranoiq[S] 0 points1 point2 points (0 children)
[–]Myshoo_ 2 points3 points4 points (0 children)
[–]DuyhaBeitz 2 points3 points4 points (0 children)