• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

ogssaa

monstercameron

Diamond Member
from what i understand this is rendering the image at a higher resolution then downsampling them to lower resolution. my question is if there is anyway (theoreticals) to optimize this?

my thoughts on this as a non programmer, is to increase the resolution of the edges. Using edge detection to find and place an array of pixels into a quadtree. Render the quadtree cells that have edges in them then blend the original image with the higher quality edge layer.

do any of you think this is feasible or has something like this already been made?

p.s. please be gentle 😳
 
If you change it, it would not be ogssaa. Look into Sparse Grid SSAA and other forms of SSAA. OGSSAA isn't the only version of super sampling.
 
The cool thing about OGSSAA, is that it can be done on almost any game. You can use downsampling, which is any easy way to achieve OGSSAA. And if you desire improved edge AA, you can use MSAA on top of your downsampling.
 
Back
Top