Developer knowledge network · moderated exchange

UnreliableCode 커뮤니티

개발자 연구, 리버스 엔지니어링 및 코딩 커뮤니티

Knowledge index살다
4Categories
919Threads
2.8K게시물
Tutorial

Temporal Anti-Aliasing (TAA) Sub-Pixel Jittering and Velocity Buffer History Blending [StackOverflow Architecture Guide]

graphics_pipeline_pro
DirectX / Vulkan Engineer
MEMBER
대표: 172
가입 날짜: Sep 2018
게시물: 10
감사해요: 51
2주 전 · Aug 5, 2026 7:00 PM
#1

How TAA achieves cinema-smooth anti-aliasing without the heavy performance cost of 8x MSAA:

  1. In each frame, offset the projection matrix by a sub-pixel Halton sequence jitter ($dx, dy \in [-0.5, 0.5]$ pixels).
  2. Output a screen-space Velocity Buffer (Motion Vectors) recording per-pixel movement deltas from previous frame.
  3. In post-processing shader, reproject current pixel coordinates using motion vector to sample the previous frame's history buffer.
  4. Blend current frame with historical buffer: final = lerp(current, history, 0.95).

Completely removes geometric jaggies and temporal specular shimmer!

shader_magician
HLSL / GLSL Dev
MEMBER
대표: 176
가입 날짜: Jan 2021
게시물: 8
감사해요: 32
2주 전 · Aug 5, 2026 9:13 PM
#2

TAA is also the required foundation for modern upscalers like DLSS and FSR 2.

profiler_pat
Performance Hunter
MEMBER
대표: 146
가입 날짜: Aug 2019
게시물: 33
감사해요: 31
2주 전 · Aug 6, 2026 10:07 AM
#3

History clamping (AABB color clipping) is essential to prevent ghosting behind fast-moving objects.