Multisampled
Multisampled refers to a technique in computer graphics where multiple samples per pixel are taken during rasterization to reduce aliasing. It is most commonly implemented as multisample anti-aliasing (MSAA). Unlike supersampling, which samples the entire pixel area, MSAA tests several sub-pixel locations for geometry coverage and typically shades only once per pixel, then blends the results from the covered samples. This yields smoother edges with less performance cost than full supersampling.
How it works: During rasterization, multiple sub-pixel sample points within each pixel are evaluated for coverage
Configurations and hardware support: common multisample counts are 2x, 4x, and 8x samples per pixel. More samples
Limitations and alternatives: MSAA mainly mitigates polygon edge aliasing and is less effective for texture aliasing