[SOLVED] VSync capping to 60hz on a 144hz monitor - Printable Version +- Xonotic Forums (https://forums.xonotic.org) +-- Forum: Support (https://forums.xonotic.org/forumdisplay.php?fid=3) +--- Forum: Xonotic - Help & Troubleshooting (https://forums.xonotic.org/forumdisplay.php?fid=4) +--- Thread: [SOLVED] VSync capping to 60hz on a 144hz monitor (/showthread.php?tid=8488) |
VSync capping to 60hz on a 144hz monitor - Bla1 - 12-16-2020 I have a triple monitor setup. My left and center monitors are at 60FPS but my rightmost monitor is at 144 fps. When I put Xonotic on the rightmost monitor with vsync enabled, it is till only 60FPS. Is there a way to get it up to 144fps? I run the following xrandr script to set it up. Code: #!/bin/sh RE: VSync capping to 60hz on a 144hz monitor - Mario - 12-16-2020 It sounds like either the engine doesn't support that properly, or there's some difficulty with the system producing VSync at different levels... Have you considered just locking the framerate in Xonotic to 150 or so and not using VSync? You can do that with the following: Code: cl_maxfps 150 RE: VSync capping to 60hz on a 144hz monitor - Freddy - 12-17-2020 To my knowledge the only WM that supports running different screens at different refresh rates is Mutter (Gnome) in a wayland session: https://www.phoronix.com/scan.php?page=news_item&px=GNOME-Multi-Monitor-Vary-Hz A similar feature is worked on for Kwin (KDE), again only wayland: https://www.phoronix.com/scan.php?page=news_item&px=KWin-2021-Better-Experience As I understand it, this is a limitation of X11 as it was designed in a time when multi-monitor setups were not of concern. RE: VSync capping to 60hz on a 144hz monitor - Bla1 - 12-18-2020 (12-16-2020, 10:16 PM)Mario Wrote: It sounds like either the engine doesn't support that properly, or there's some difficulty with the system producing VSync at different levels... Ahh yup that is what I ended up doing @Freddy, that is cool, I didn't know that. I am using XFCE, I believe with X11. I'm not sure if everything is being rendered at 144fps, but I'm pretty sure the 144hz monitor is running at 144fps. Thanks for the help guys! |