Search found 1 match
- Thu Dec 14, 2017 11:50 am
- Forum: General
- Topic: vsync limits frame rate to 60
- Replies: 1
- Views: 1527
vsync limits frame rate to 60
My solution in my own engine was to create an additional thread for logic and one mutex. Then the main thread loop (drawing one) looked like this: 1. Lock the mutex. 2. Call the user code for drawing 3. Unlock the mutex. 4. Call the screen updating function which blocks. While the updating thread lo...