Tell me more ×
Game Development Stack Exchange is a question and answer site for professional and independent game developers. It's 100% free, no registration required.

I know the principles behind how QCSAA is supposed to work (as opposed to how, say, regular CSAA works) and subjectively after some testing I like the style it lends to the image enough that I'm considering turning it on by default in certain situations. The question is - I've read that in practice it doesn't work quite as described. Theoretically, it should only be considering coverage samples from the the nearest edges of neighboring pixels along with the local pixel's samples in its calculation, which makes sense. But I've seen it claimed that it's actually just a blur filter over an antialiased image - that is, a 8xQCSAA frame is just rendered using 8xCSAA and then slightly blurred, using the finished pixels as samples.

This is obviously not the same thing. Does anyone know how it works for sure?

share|improve this question
Depressingly, these implementations have changed multiple times, through the years (even multiple times a year, at some points). There has never been a guarantee that the algorithms for any AA style (much like non-standard texture compression, etc) would remain static, and these algorithms were very, very frequently changed in the early days, in order to improve performance, while fudging image-quality/precision, in competition with ATi. These days, that's mattered much less. That said, the current state of the algorithm is wholly unknown to me. – Norguard Feb 20 at 19:03
Yes. – Trevor Powell Feb 21 at 8:23

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.