I have learn OpenGL programming for some time.And I found a very strange phenomenon : my FPS(Frame per Second) always stays about 60,no matter the program is very easy or a litt
What @Thomas said, it's VSync.
You can disable it in your applicaton using:
glfwSwapInterval(0);
0
1
SDL_GL_SetAttribute(SDL_GL_SWAP_CONTROL, 0);