版本
3.5-1056
分支
master
发布于
11 years ago
Windows x64 Windows x86 Mac OS X
提交(Commit)
7514b41966145af3c628af3d6b6d40fc9a57fefc
修改者
degasus
修改说明
GLSL: fix msaa egdes

MSAA is a optimiztion to execute the fragment shader just once per pixel instead per sample.
It sounds great, but has a big issue: At edges where the center isn't in the polygon, the
fragment would still be executed, but still with the center of the pixel as position.
So if some calculations aren't allowed outside the polygon, the result would be invalid.

But the nice one: we can give a hint to each input to be choosen from a valid pixel,
so now every pixel will be calculated with valid source.