I have a project that I've been working on multiple computers depending on where I am. On my laptop with an Intel GMA X3100 video card, the fps aren't restricted and climb into the hundreds, but on my desktop with an NVIDIA GTX 260, it seems to be clamped at 60. This is really frustrating as I can't effectively benchmark my shader code. I'm using an Animator object and not an FPSAnimator object, so I don't have a clue where to look to find the culprit. Could this just be a driver issue? I'm also running Java 1.6 build 26. Any help would be great. Thanks.
The vertical synchronization is forced at the driver level. Disabling it programmatically might not work. Call setSwapInterval(0) and check whether it has an effect.
Sounds like u are using "v-sync" on ur NVidia card. U have to either disable (forced) v-sync in the driver setting and/or explicitly disable v-sync by using "tGL.setSwapInterval(0);" in ur JOGL application. Also u may have to use "tAnimator.setRunAsFastAsPossible(true);".