Originally posted by: Chocolate Pi
vsync, to keep it simple, throws out the extra frames that your monitor doesn't show properly so that your frame rate remains the just the maximum your monitor supports. (In this case 85 FPS) Because you don't see those other frames anyway, you aren't losing anything and it's still going just as fast. The benefit is that vsync prevents "tearing", or distracting rips in the screen when you turn. vsync is a good idea for FPS games, because it helps your reflexes when turning quickly by keeping the screen clear.
That's a little sketchy. Here's how it works.
A Frame Buffer is an area in VRAM where the GPU writes a frame and holds it until the monitor is ready to receive it; when it refreshes. The GPU, by default, uses 2 Frame Buffers, alternating between one and the other. With V-Sync enabled, the GPU writes to both buffers, but never overwrites until a Frame Buffer is freed by sending it to the monitor when it refreshes. With V-Sync disabled, the default setting, the GPU writes to both buffers, not caring if it overwrites or not. The GPU can even send out a frame if it?s in the middle of overwriting it, causing artifacts known as tearing. Since the GPU cannot overwrite with V-Sync enabled, it has to wait, meaning it?s wasting power and writing less average frame rate. The GPU doesn?t wait with V-Sync disabled so it writes as fast as possible for optimal performance.
With V-Sync enabled, you will experience jumps in frame rates if your frame rate falls below your monitor?s refresh rate. Say your refresh rate is 60Hz; you will notice jumps from 60fps down to 30fps. A jump like this is very distracting. With V-Sync disabled, you will notice tearing, which is when part of the screen shows part of one frame and the other shows part of another frame. This effect is very easy to see in scenarios where there is flickering light in a game. This effect is more prominent on a LCD than on a CRT but it is noticeably decreased when the average frame rate falls below your monitor?s refresh rate.
Triple Buffering is an attempt to fix the jumps in frame rates that occur with V-Sync enabled by allocating a 3rd buffer in VRAM. It works well, except for a few details. Not all applications support Triple Buffering in Direct3D. Because Triple Buffering uses 50% more VRAM, you may have to lower your graphics settings in order to free up VRAM for Triple Buffering. It may also introduce mouse lag which may cause a negative gaming experience.
Whether you leave V-Sync enabled or disabled is based on personal preference about which disadvantage you can withstand more. I don?t mind the tearing with V-Sync disabled, especially if my average frame rate is below my monitor?s refresh rate, so I favor V-Sync disabled due to smoother frame rate.