Overview

Screen tearing is a visual artifact that appears when a display device shows portions of two or more different frames at once. The effect usually looks like one or more horizontal splits where the image above the line belongs to one frame and the image below belongs to another. Tearing is most noticeable during fast motion in video games, video playback, or any real-time graphics where the source frame rate and the display refresh rate are not synchronized.

How it happens

Displays draw images in a sequence of refresh cycles. If the graphics processor updates the framebuffer while the monitor is partway through a refresh, part of the screen will show the old frame and part will show the new frame. Historically this interaction was tied to the vertical blanking interval of displays; on modern displays the same mismatch between when frames are produced and when the display scans them causes tearing. The artifact is independent of display technology, though it may be more visible on some panels and in certain viewing conditions.

Common solutions

Several techniques reduce or eliminate tearing. Vertical synchronization (VSync) forces the graphics pipeline to present complete frames only during the display's refresh interval, eliminating intra-frame updates but sometimes introducing input lag. Adaptive synchronization solutions such as FreeSync and G-Sync allow the monitor to vary its refresh rate to match the frame rate produced by the GPU, which reduces tearing without necessarily adding the same level of lag. Other approaches include triple buffering, frame pacing, compositor-based synchronization in desktop environments, and limiting the frame rate to match the display.

Trade-offs and compatibility

Each mitigation involves trade-offs. VSync can introduce stutter or input latency when the GPU cannot sustain the display's refresh rate. Adaptive-sync systems require compatible graphics cards and monitors and may have licensing or implementation differences between vendors. Triple buffering can smooth frame delivery but uses more memory and may not be supported everywhere. Users choose a combination of techniques depending on priorities such as visual smoothness, responsiveness, and hardware capabilities.

Practical tips

  • For competitive gaming, many players prefer low latency and may tolerate minor tearing rather than enable VSync.
  • For single-player or cinematic experiences, adaptive sync or VSync with triple buffering often provides a smoother appearance.
  • Desktop environments and media players sometimes offer compositor options that hide tearing with minimal performance impact.

For further reading on display refresh and synchronization mechanisms see technical details about refresh cycles and vendor guidance on adaptive technologies such as proprietary adaptive-sync systems.