Antialiasing?

   392   3   2
User Avatar
Member
12 posts
Joined: 12月 2016
オフライン
What would be the right approach to deal with antialiasing?, I've rasterized some geometry but I can't solve the jagged edges beyond setting up the resolution quite high, and even then there is a lot of jagged edges that are to noticiable to ignore

Attachments:
Screenshot 2025-11-16 at 10.29.54AM.png (68.2 KB)

User Avatar
Member
8177 posts
Joined: 9月 2011
オンライン
Nothing can be done really, beyond rasterizing at a higher resolution than the target resolution, and then scaling down at the end of the operations before output. You quickly hit the wall of the maximum possible resolution capable of the vulkan based rasterization when your target resolution is higher than 2k.

I've asked for some way to anti-alias; it would be helpful if more users submitted RFEs in regard to anti-aliasing.
User Avatar
Member
12 posts
Joined: 12月 2016
オフライン
Thanks, I thought so, I hope they add a filtering or sampling node to help with this, would be so usefull!
User Avatar
スタッフ
6764 posts
Joined: 7月 2005
オフライン
In 21 the font cop has a smoothing option to deal with that.

If you look how it is implemented, it is by doing a pair of rasterizations.

We rasterize the geometry to get the jagged on/off. And we rasterize as curves to get the partial coverage. The two can be then combined together.

For the Font COP we do it in a way that is balanced, but this requires you don't have internal lines, ie, only have the outline of the object. Otherwise you can do a one-sided antialiasing on the outside only by only using the curve values less than 0.5.
  • Quick Links