Question

With all my SDL/OpenGL programs, the framerate is stuck at 60fps, so looks like the vsync is enable, but not by me, nor in my code or my settings. so i would like to now if there is a way to disable it, maybe in some deep macOS settings?

Was it helpful?

Solution 3

After YEARS looking for a workaround (and with the help of Brett Hale) this is what worked for me - I've added that piece of code at the start of my render loop (and not only in the init, as Apple seems to reset the SwapInterval settings every time...) and was finally able to have unsynchronize framerate:

#ifdef __APPLE__
GLint                       sync = 0;
CGLContextObj               ctx = CGLGetCurrentContext();

CGLSetParameter(ctx, kCGLCPSwapInterval, &sync);
#endif

Don't forget to include <OpenGL/gl.h>

It's not the nicest solution but it's actually the only one I found that work like a charm.

OTHER TIPS

This enabled me to get around ~700 frames per second on my MacBook Pro.

It is not permanent either, perfect for testing/benchmarking.

Source

Welcome to SO. I outlined an approach here for a similar question. You should consider that most Mac LCDs are locked to 60Hz, and more recent hardware is limited to 120Hz. Disabling vsync may simply result in wasted CPU/GPU cycles, and possibly introduce tearing artifacts.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top