Multiple windows with different refresh rates #2802
-
Hello, I have 3 monitors, each with a different refresh rate: 60Hz, 75Hz, & 144Hz. Now, I need to render some graphics in each window, with V-Sync ON, every frame of the corresponding monitor. I also need to use the same textures, meshes and shaders in the 3 windows. Is this possible to do with bgfx? Also, are there any nuances I should know about regarding different backends (Vulkan, Metal, etc.) when dealing with such multithreaded rendering? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can have v-sync off, and then throttle updates based on your highest-frequency monitor. Usually people who have multiple monitors buy identical monitors to have refresh rate, colors, brightness, pixel density, etc. all matching. This mismatched monitor case is not worth supporting. |
Beta Was this translation helpful? Give feedback.
You can have v-sync off, and then throttle updates based on your highest-frequency monitor.
Usually people who have multiple monitors buy identical monitors to have refresh rate, colors, brightness, pixel density, etc. all matching. This mismatched monitor case is not worth supporting.